您的当前位置:首页正文

Not registered via @EnableConfigurationProperties, | A component required a bean of type ‘xxx‘

2024-12-01 来源:个人技术集锦

Not registered via @EnableConfigurationProperties, marked as Spring component
当使用@ConfigurationProperties时报这个错误

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-configuration-processor</artifactId>
    <optional>true</optional>
</dependency>

二、在你对应的类中添加@Component注解

显示全文