SpringBoot 启动报错,EnableConfigurationProperties 注解跳坑记

使用SpringBoot 脚手架搭建的一个简单的 web demo ,开启了属性自动注入,配置文件如下:

@Setter
@Getter
@Configuration
@ConfigurationProperties(prefix = "com.ff")
@EnableConfigurationProperties(FFProperties.class)
public class FFProperties {
    private String database;
}


@Component
public class LocalDataBase {

    private final FFProperties properties;
    public LocalDataBase(FFProperties properties) {
        this.properties = properties;
    }
}

启动服务失败,根据错误信息很明显可以判断出是Spring容器有两个实例,不知道要注入哪个


***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of constructor in com.hoperun.database.LocalDataBase required a single bean, but 2 were found:
	- ffProperties: defined in file [D:\workspace\demo\target\classes\com\ff\properties\FFProperties.class]
	- com.ff-com.ff.properties.FFProperties: defined in null


Action:

Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed


Process finished with exit code 0

这里配置有个坑,需要注意下,如果注解在配置类的头上,则不要再写上类本身了, 按下面的修改,即可正常运行了

@Setter
@Getter
@Configuration
@ConfigurationProperties(prefix = "com.ff")
@EnableConfigurationProperties
public class FFProperties {
    private String database;
}
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
NoUniqueBeanDefinitionException是Spring框架中的一个异常,它表示在注入bean时发现了多个匹配的bean,而期望只有一个匹配的bean。这个异常通常是由于以下原因引起的: 1. 重复的@Component注解:如果在多个类上使用了相同的@Component注解,并且这些类都被扫描到并注册为bean,那么就会出现重复的bean定义。 2. 重复的@Bean注解:如果在多个@Configuration类中使用了相同的@Bean注解,并且这些类都被加载到应用程序上下文中,那么就会出现重复的bean定义。 3. 重复的XML配置:如果在XML配置文件中多次定义了相同的bean,那么就会出现重复的bean定义。 解决这个问题的方法有以下几种: 1. 使用@Primary注解:在多个相同类型的bean中,可以使用@Primary注解来指定一个主要的bean,当存在多个匹配的bean时,Spring会优先选择带有@Primary注解的bean。 2. 使用@Qualifier注解:在需要注入bean的地方,可以使用@Qualifier注解来指定要注入的具体bean的名称,以避免歧义。 3. 使用@Conditional注解:可以使用@Conditional注解来根据条件选择性地加载bean,以避免重复的bean定义。 4. 排除重复的扫描路径:在配置类上使用@ComponentScan注解时,可以通过excludeFilters属性来排除重复的扫描路径,以避免重复的bean定义。 5. 检查XML配置文件:如果使用XML配置文件定义bean,需要检查是否有重复的bean定义,并删除其中的重复定义。 下面是一个示例代码,演示了如何使用@Primary注解解决NoUniqueBeanDefinitionException异常: ```java @Component public class BeanA { // ... } @Component @Primary public class BeanB { // ... } @Autowired private BeanA bean; ``` 在上面的示例中,当注入BeanA时,由于存在多个匹配的bean,但是BeanB被标记为@Primary,所以Spring会选择注入BeanB。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值