- Compose a Multi Module Structure project with QueryDSL
- Java 11
- Spring Boot 2.4.4
- MySQL
- JPA & QueryDSL
- Gradle 6.8.3
-
Parent
- module-common : Repository, Property, Constant
-
Child
- module-api : Controller, Service
build.gradle in Root
project(':module-api') {
dependencies {
compile project(':module-common')
}
}
- Need to add DB config in module-common to /config/custom/db.yml
- QueryDSL Setting Commit : 641b270