码迷,mamicode.com
首页 > 其他好文 > 详细

解决 IllegalArgumentException: Could not resolve placeholder in string value "${XXXXXX}"

时间:2017-02-18 18:16:19      阅读:2052      评论:0      收藏:0      [点我收藏+]

标签:文件中   原因   重复   使用   配置   nbsp   code   context   ons   

如题:

导致这一问题的原因:使用了重复的property-placeholder

如一个配置文件中使用了

<context:property-placeholder location="classpath:aa.properties" />

而另一处使用了

<bean id="propertyConfigurer">
          <!--class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">-->
        <property name="locations">-->
            <list>
                <value>classpath:bb.properties</value>
            </list>
        </property>
    </bean>

 

解决:

主要从以下几个地方去解决:

1. 去掉一处的propertyConfigurer配置,替换成context:property-placeholder

2. 两处都添加ignore-unresolvable="true"

配置文件1:

<context:property-placeholder location="classpath:aa.properties" ignore-unresolvable="true" />

配置文件2:

<context:property-placeholder location="classpath:bb.properties" ignore-unresolvable="true" />

 

解决 IllegalArgumentException: Could not resolve placeholder in string value "${XXXXXX}"

标签:文件中   原因   重复   使用   配置   nbsp   code   context   ons   

原文地址:http://www.cnblogs.com/davidgu/p/6413576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!