mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-27 20:49:34 +00:00
Previously, @ConfigurationProperties was not annotated with @Indexed. This meant that @ConfigurationPropertiesScan would not be able to find them when the underlying ClassPathScanningCandidateComponentProvider is using a CandidateComponentsIndex. This commit annotated @ConfigurationProperties with @Indexed so that they can be found by index-based scanning. Fixes gh-26459