java.lang.IllegalStateException: Failed to load ApplicationContext

本文详细介绍了在使用Spring框架时,由于配置文件重复加载而导致的BeanDefinitionStoreException异常问题。通过调整@ContextConfiguration注解,从加载所有配置文件更改为仅加载单个指定配置文件,成功解决了因配置文件重复加载引发的异常。
Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: 
Invalid bean definition with name 'com.alibaba.dubbo.config.RegistryConfig' defined in null:
Could not resolve placeholder 'address' in string value "${address}";
nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'address' in string value "${address}"

1....重复加载配置文件:一个配置文件多次引入导致系统加载判断异常,产生报错异常
错误引入文件:@ContextConfiguration(locations = {"classpath*:spring/applicationContext*.xml"})  
:我的配置文件引入了多次,* 号的引入包括全部配置文件;
正确引入文件:@ContextConfiguration(locations = {"classpath:spring/applicationContext-dao.xml"})

:我把配置文件引入减少到单个文件,加载配置文件时,可以完全解析并获得 spring工厂创建的对象

以上完美解决问题!!!
 

转载于:https://www.cnblogs.com/wangshichang/p/11354593.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值