What problem does it solve?
This skill provides Spring application structure and wiring guidance to keep controllers thin, separate business logic from HTTP concerns, and standardize package organization across Spring Boot projects, including WebFlux or coroutine-first services.
Core Features & Use Cases
- Enforces clear boundaries between controllers, services, and repositories to improve testability and maintainability.
- Promotes proper bean wiring and explicit configuration properties via dedicated configuration classes.
- Guides transactional boundaries, eventing, scheduling, and basic observability within the application stack.
- Use case: you want a consistent project structure that scales with features, keeps business logic out of HTTP layers, and supports coroutine-first or Flow usage in Spring-managed code.
Quick Start
Configure a Spring Boot project with a standard architecture (controllers thin, services orchestrating, repositories focused on persistence) and verify wiring and properties align with Spring best practices.