https://github.com/leon/springboot-multiproject
Demo repo for a spring boot multiproject setup
https://github.com/leon/springboot-multiproject
Last synced: about 1 year ago
JSON representation
Demo repo for a spring boot multiproject setup
- Host: GitHub
- URL: https://github.com/leon/springboot-multiproject
- Owner: leon
- Created: 2014-09-18T07:11:17.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-18T11:24:36.000Z (almost 12 years ago)
- Last Synced: 2025-03-26T00:35:57.633Z (about 1 year ago)
- Language: Java
- Size: 105 KB
- Stars: 26
- Watchers: 3
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gradle multi spring boot project
* Domain layer with jpa
* Admin web app "/admin" with spring security configured against jpa
* main app
## Separation
by separating the admin layer into it's own app we can launch it independently and work on it without the main app. In a larger app there would probably be a /api layer also with it's own security model
## Todo
Launching everything together.
having both the admin layer the base layer and possibly the api layer sharing the same domain
```
/ <- main app
/admin <- admin app
/api <- api app
```