Use typed, profile-aware configuration rather than scattering `@Value` strings: ```java @ConfigurationProperties("payments") @Validated public record PaymentProperties(@NotEmpty String baseUrl, @NotNull Duration timeout) {} ``` Register it with `@ConfigurationPropertiesScan` (or `@EnableConfigurationProperties`) and keep structured defaults in `application.yaml`. Put environment-specific overrides in `application-dev.yml` and `application-prod.yml`, selecting one with `SPRING_PROFILES_ACTIVE`...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill spring-boot-best-practices --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Spring Boot Best Practices?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-spring-boot-best-practices-520dd493)More formats (shields.io, HTML) on the badges page.
Use typed, profile-aware configuration rather than scattering `@Value` strings:
```java
@ConfigurationProperties("payments")
@Validated
public record PaymentProperties(@NotEmpty String baseUrl,
@NotNull Duration timeout) {}
```
Register it with `@ConfigurationPropertiesScan` (or `@EnableConfigurationProperties`) and keep structured defaults in `application.yaml`. Put environment-specific overrides in `application-dev.yml` and `application-prod.yml`, selecting one with `SPRING_PROFILES_ACTIVE`. Use environment variables, Kubernetes Secrets, Vault, or `spring.config.import` for credentials; never commit or bake secret values into properties.
Validation should fail fast at startup using `@Validated` and Jakarta constraints such as `@NotNull` and `@NotEmpty`. Records provide immutable, type-safe configuration and make duration, URLs, and numeric limits explicit. Avoid `@Value` for larger configuration groups, avoid silent empty defaults for required settings, and do not log secret values. Keep configuration ownership near the feature that consumes it and test each required profile and startup validation path.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!