spring 加载多个常量配置文件的问题??

今天新建了一个shiro.properties配置文件,将文件引入到shiro.xml 配置文件中为了替换文件中的占位符信息。结果出现了下面的异常信息:

org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'simpleCookie' defined in class path resource [spring-shiro.xml]: Could not resolve placeholder 'shiro.cookie.path' in value "${shiro.cookie.path}"; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'shiro.cookie.path' in value "${shiro.cookie.path}"
	at org.springframework.beans.factory.config.PlaceholderConfigurerSupport.doProcessProperties(PlaceholderConfigurerSupport.java:223)
	at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.processProperties(PropertySourcesPlaceholderConfigurer.java:180)
	at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.postProcessBeanFactory(PropertySourcesPlaceholderConfigurer.java:152)

主要原因通过context:property-placeholder 默认情况下ignore-unresolvable 属性是fasle,在执行doProcessProperties方法时进行占位符替换的时候,发现找不到替换占位符的信息则会抛出异常信息。

解决方法:

  • 通过 中 ignore-unresolvable属性设置true

表示当前PropertySourcesPlaceholderConfigurer实例在找不到对应的占位符的情况会将占位符保存下来,然后通过下一个PropertySourcesPlaceholderConfigurer实例去解决这个问题,如果还是找不到则抛出异常。

  • location 属性中设置多个配置文件,以逗号分隔:

你可能感兴趣的:(spring)