问题提出:
最近在做后台接口开发的登录注册模块,用的是SSM框架,由于有一个地方用到验证码功能,于是使用session进行存储验证码,后来测试发现存在session丢失现象,决定使用redis来解决。原有项目spring配置文件中已经引入jdbc.properties文件,由于要加上redis的配置,所以新建了一个spring-redis.xml和redis.properties。但是发现启动时,总是报错IllegalArgumentException: Could not resolve placeholder in string value "${redis.host}"。
经过查阅资料发现是项目默认只能识别一个properties。当多个spring xml文件中都有<context:property-placeholder /> 语句项目启动过程中也只会加载一个,只保留识别最先加载的,因此,只能加载到了一个属性文件,因而造成无法正确进行属性替换的问题。
解决方式:
1.如果原本使用<context:property-placeholder> 配置的,在配置项都加属性 ignore-unresolvable="true"
配置文件spring-mybatis.xml:
<context:property-placeholder location="classpath:jdbc.properties" ignore-unresolvable="true" />
配置文件spring-redis.xml:
<context:property-placeholder location="classpath:redis.properties" ignore-unresolvable="true" />
2.如果原本使用<bean>配置的:
<!-- 第一个调用properties文件的地方 -->
<bean id="xxx" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:jdbc.properties" /> <property name="ignoreUnresolvablePlaceholders" value="true" />
</bean> <!-- 第二个调用properties文件的地方 -->
<bean id="yyy" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:redis.properties" /> <property name="ignoreUnresolvablePlaceholders" value="true" />
</bean>