Как использовать несколько свойств-заполнителей в разных контекстах
Я использую Spring Framework и Spring Security. Есть разные места, где мне нужно использовать путь к странице. Например, "/mainpath". Я помещаю это в /WEB-INF/classes/path.properties. Путь должен использоваться в servlet-context.xml и в security-context.xml. Если следующее помещено в оба контекста
<context:property-placeholder location="/WEB-INF/classes/path.properties"/>
это приведет к
java.lang.IllegalArgumentException: "Could not resolve placeholder 'main.page' in string value "${main.page}"
Следующее не дает требуемого результата.
<context:property-placeholder location="/WEB-INF/classes/path.properties" ignore-unresolvable="true"/>
UPD. path.properties:
main.page=mainpage
Я исключаю свойство-заполнитель из servlet-context.xml. Ошибка все еще возникает. Часть безопасности-контекста:
<context:property-placeholder location="classpath:/path.properties"
ignore-unresolvable="false"/>
<http use-expressions="true">
<intercept-url pattern="/${main.page}" access="isAuthenticated()"
requires-channel="http"/>
...
</http>
Я пытался разместить path.properties в разных папках. Свойство-заполнитель также используется в datasource-tx-jpa.xml с другим файлом свойств.
Структура папок:
Трассировки стека:
ERROR: org.springframework.web.context.ContextLoader - Context initialization failed
org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0' defined in null: Could not resolve placeholder 'main.page' in string value "/${main.page}"; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'main.page' in string value "/${main.page}"
at org.springframework.beans.factory.config.PlaceholderConfigurerSupport.doProcessProperties(PlaceholderConfigurerSupport.java:211)
at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.processProperties(PropertySourcesPlaceholderConfigurer.java:180)
at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.postProcessBeanFactory(PropertySourcesPlaceholderConfigurer.java:155)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:265)
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:162)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:609)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464)
at org.springframework.web.context.ContextLoader.configureAndRefreshWebApplicationContext(ContextLoader.java:403)
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:306)
at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:106)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4720)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5154)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1409)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1399)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'main.page' in string value "/${main.page}"
at org.springframework.util.PropertyPlaceholderHelper.parseStringValue(PropertyPlaceholderHelper.java:174)
at org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders(PropertyPlaceholderHelper.java:126)
at org.springframework.core.env.AbstractPropertyResolver.doResolvePlaceholders(AbstractPropertyResolver.java:194)
at org.springframework.core.env.AbstractPropertyResolver.resolveRequiredPlaceholders(AbstractPropertyResolver.java:158)
at org.springframework.context.support.PropertySourcesPlaceholderConfigurer$2.resolveStringValue(PropertySourcesPlaceholderConfigurer.java:175)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.resolveStringValue(BeanDefinitionVisitor.java:282)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.resolveValue(BeanDefinitionVisitor.java:209)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.visitIndexedArgumentValues(BeanDefinitionVisitor.java:150)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.visitBeanDefinition(BeanDefinitionVisitor.java:84)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.resolveValue(BeanDefinitionVisitor.java:169)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.visitMap(BeanDefinitionVisitor.java:259)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.resolveValue(BeanDefinitionVisitor.java:198)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.visitIndexedArgumentValues(BeanDefinitionVisitor.java:150)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.visitBeanDefinition(BeanDefinitionVisitor.java:84)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.resolveValue(BeanDefinitionVisitor.java:169)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.visitPropertyValues(BeanDefinitionVisitor.java:141)
at org.springframework.beans.factory.config.BeanDefinitionVisitor.visitBeanDefinition(BeanDefinitionVisitor.java:82)
at org.springframework.beans.factory.config.PlaceholderConfigurerSupport.doProcessProperties(PlaceholderConfigurerSupport.java:208)
... 18 more
UPD 2. Проблема заключается в том, что свойство-заполнитель размещено в datasource-tx-jpa.xml, который импортируется в root-context.xml перед security-context.xml. Поэтому он не может найти заполнитель в файле свойств, связанном с datasource-tx-jpa.xml. Атрибут "ignore-unresolvable" свойства-заполнителя должен быть установлен в true в первом импортированном контексте.
2 ответа
Определите местоположение вашего файла как classpath
классы не кажутся хорошими именами, если вы используете maven, поместите ваш файл в папку ресурсов и запишите свойство-заполнитель как
<context:property-placeholder location="classpath:/path.properties" />
Если вы не используете maven, определите папку в вашей конфигурации, это классы (я рекомендую переименовать ее) в вашей конфигурации, определите эту папку Build Path->Configure Build Path->Source Add
папка классов на этой вкладке
The problem is in property-placeholder placed in datasource-tx-jpa.xml, which is imported in root-context.xml before security-context.xml. Поэтому он не может найти заполнитель в файле свойств, связанном с datasource-tx-jpa.xml. Атрибут "ignore-unresolvable" свойства-заполнителя должен быть установлен в true в первом импортированном контексте.