@Value | @ConfigurationProperties | |
|---|---|---|
| Binding | 1 property | Nhóm property vào class |
| Type-safe | Hạn chế (SpEL) | ✅ Full type conversion |
| Validation | Không | ✅ @Validated + Bean Validation |
| IDE support | Kém | ✅ autocomplete, navigation |
java
@Value("${server.port:8080}") int port; // 1 property
@ConfigurationProperties(prefix = "app.mail") @Validated // nhóm property (RECOMMENDED)
public record MailProps(@NotBlank String host, @Min(1) @Max(65535) int port, boolean ssl) {}
// bật scan: @ConfigurationPropertiesScan trên class @SpringBootApplication@Value: 1 property đơn lẻ, SpEL phức tạp. @ConfigurationProperties: config có cấu trúc (≥3 key liên quan), cần validation, viết test.