为不同的用户设置不同的属性集是很有用的。
<?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怎么不接环境变量呢?
- 我对解决相同功能问题的替代解决方案持开放态度。