org.springframework.beans.factory.BeanDefinitionStoreException:
Invalid bean definition with name '******' defined in null: Could not resolve placeholder 'displayName'
因为你配置了多个 org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
这个配置用于 xml 中的占位符,如下:
<property name="driverClassName" value="${jdbc.driverClassName}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" />
解决方法:a.xml中配置第一个 PropertyPlaceholderConfigurer 时,将ignoreUnresolvablePlaceholders的值设为true
如下所示:
<bean id="myConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:jdbc.properties</value> </list> </property><property name="ignoreUnresolvablePlaceholders" value="true" /> </bean>
这个配置告诉spring,当某个placeholder无法找到时,先不要报错,并尝试用另一个PropertyPlaceholderConfigurer来设置placeholder的值。
假设 a.xml 配置了一个 PropertyPlaceholderConfigurer ,并且成功了。
后来,b.xml 也配置了一个 PropertyPlaceholderConfigurer ,这时候如果不做特别配置,b.xml 里配置的placeholder将无法使用,并报上面的错误。
如果还不行,将定义PropertyPlaceholderConfigurer 的bean提到applicationContext.xml的最前面