What problem does it solve?
Manually writing JPA entities for Spring Boot projects often leads to inconsistent code, missed best practices (like lazy relationship loading, proper column naming, and auditing support), and avoidable bugs that require hours of debugging and refactoring.
Core Features & Use Cases
- Production-grade entity templates: Pre-built templates that enforce Spring Boot 4, Jakarta Persistence, and PostgreSQL conventions out of the box.
- Built-in best practice guardrails: Automatically applies lazy loading for all relationships, explicit snake_case column naming, Lombok usage restrictions, and BaseEntity inheritance for built-in auditing.
- Use Case: When building the property management module for the HomeFlex platform, use this skill to generate consistent RoomType and Property entities that follow the project's existing domain conventions, eliminating manual boilerplate and reducing entity-related bugs.
Quick Start
Use the spring-entity skill to generate a JPA entity for a new Amenity domain object with fields for name, description, and category, following the project's existing conventions.