spring-boot-coding-standards
Installation
SKILL.md
Spring Boot Coding Standards
Follow these coding standards when developing Spring Boot applications.
Constructor Injection (Required)
ALWAYS use constructor injection instead of field injection:
// ✅ CORRECT: Constructor injection
@Service
public class AppointmentService {
private final AppointmentRepository appointmentRepository;
private final CustomerService customerService;