diff --git a/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java b/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java index 41187175b15..114d203066d 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessor.java @@ -324,7 +324,7 @@ public class ConfigurationPropertiesBindingPostProcessor implements BeanPostProc private ConversionService getDefaultConversionService() { if (!this.initialized) { for (Converter converter : ((ListableBeanFactory) this.beanFactory) - .getBeansOfType(Converter.class).values()) { + .getBeansOfType(Converter.class, false, false).values()) { this.defaultConversionService.addConverter(converter); } }