generate_service
Generate Spring Boot service interfaces and implementations following best practices, with optional caching, transactions, and custom methods.
Instructions
Generate a Spring Boot Service with interface and implementation following best practices
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| methods | No | Additional custom methods beyond CRUD | |
| entityName | Yes | Entity name in PascalCase, e.g. 'Product' | |
| packageName | No | Base package name | com.example.demo |
| withCaching | No | Include @Cacheable annotations | |
| withTransaction | No | Include @Transactional annotations |