6

为不同的用户设置不同的属性集是很有用的。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:context="http://www.springframework.org/schema/context"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <context:property-placeholder
        location="classpath:/path/to/package/default.properties,
        classpath:/path/to/package/#{ systemProperties['user.name'] }.properties"/>

</beans>

执行应用程序时,spring 无法识别表达式。上下文没有开始,spring 说:class path resource [path/to/package/#{ systemProperties['user.name'] }.properties] cannot be opened

当我用导致有效资源的字符串手动替换表达式时,行为符合预期。手册说明它应该可以工作。

spring-context 和 spring-core (3.1.2-RELEASE) 在类路径中。

  • spring怎么不接环境变量呢?
  • 我对解决相同功能问题的替代解决方案持开放态度。
4

2 回答 2

4

那里不允许使用 SpEL 表达式;你可以间接地做你想做的事,虽然......

<context:property-placeholder properties-ref="props"/>

<util:properties id="props" location="classpath:#{systemProperties['foo']}"/>
于 2012-11-02T18:18:52.980 回答
0

这是问题的完整答案。将用户属性覆盖在默认属性之上。我对已接受答案的编辑被拒绝了。

<context:property-placeholder properties-ref="springContextCongifurationProperties"
                              location="classpath:/path/to/package/default.properties"
                              local-override="true"/>

<util:properties id="springContextCongifurationProperties"
                 location="classpath:/path/to/package/#{ systemProperties['user.name'] }.properties"/>
于 2012-11-03T09:55:10.943 回答