What problem does it solve?
Scaffolds a Kotlin + Spring Boot multi-module backend using a simplified domain layer that does not expose a domain repository interface or RepositoryImpl. Handlers inject the Spring Data XJpaRepository directly and the domain-to-persistence mapping lives inside the JPA entity via toDomain and fromDomain. This approach speeds up MVPs and prototypes while preserving a clean architectural structure with buildingBlocks, core, presenter-api, presenter-consumer, and presenter-job.
Core Features & Use Cases
- Simplified multi-module scaffold: buildingBlocks, core, presenter-api, presenter-consumer, presenter-job.
- No domain repository interface or RepositoryImpl; direct injection of XJpaRepository into application handlers.
- JPA entity handles domain mapping with toDomain and fromDomain, preserving a clear persistence boundary.
- Trade-offs: faster MVPs at the cost of tighter coupling between core and infrastructure; best for prototyping and small teams.
Quick Start
Run the scaffold to generate a new Kotlin Spring project with the simplified multi-module structure.