最近,我们在使用 @ConfigurationProperties 进行注解的时候,遇到了
Not registered via @EnableConfigurationProperties, marked as Spring component, or scanned via @ConfigurationPropertiesScan
异常。
问题和解决
上面的问题的原因是:因为被注解的类没有进行实例化操作,比如没有使用@Component进行实例化操作。
所以,非常简单的,我们只需要添加 @Component
来进行实例化就可以了。
进行实例化后就可以解决 Spring 提示的问题了。
https://www.ossez.com/t/springboot-configurationproperties-not-registered-via-enableconfigurationproperties/14312