美文网首页
SpringBoot 使用 @ConfigurationProp

SpringBoot 使用 @ConfigurationProp

作者: HoneyMoose | 来源:发表于2023-02-05 22:50 被阅读0次

    最近,我们在使用@ConfigurationProperties进行注解的时候,遇到了

    Not registered via@EnableConfigurationProperties, markedasSpring component, or scanned via@ConfigurationPropertiesScan

    异常。

    问题和解决

    上面的问题的原因是:因为被注解的类没有进行实例化操作,比如没有使用@Component进行实例化操作。

    所以,非常简单的,我们只需要添加@Component来进行实例化就可以了。

    进行实例化后就可以解决 Spring 提示的问题了。

    https://www.ossez.com/t/springboot-configurationproperties-not-registered-via-enableconfigurationproperties/14312

    相关文章

      网友评论

          本文标题:SpringBoot 使用 @ConfigurationProp

          本文链接:https://www.haomeiwen.com/subject/smbzhdtx.html