最近,我们在使用@ConfigurationProperties进行注解的时候,遇到了
Not registered via@EnableConfigurationProperties, markedasSpring component, or scanned via@ConfigurationPropertiesScan
异常。
上面的问题的原因是:因为被注解的类没有进行实例化操作,比如没有使用@Component进行实例化操作。
所以,非常简单的,我们只需要添加@Component来进行实例化就可以了。
进行实例化后就可以解决 Spring 提示的问题了。
网友评论