3

这是Spring的博客:http: //blog.springsource.org/2011/02/15/spring-3-1-m1-unified-property-management/

它引入了一个新功能:导入标签中的用户占位符。例子:<import resource="com/bank/service/${customer}-config.xml"/>

嗯,我也是3.1。

然后,当我启动 MYAPP 时,奇迹并没有发生..

这是我的代码:(sourceFolder 中的 config.properties):

kName = P0765

(春天的xml):

<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">;
    <property name="location" value="classpath:config.properties" >;
</bean>

<import resource="readyData/${KName}.xml"/>

:( 什么工作没做??

4

1 回答 1

0

在 import 元素中解析的属性必须设置为 JVM 系统属性或系统环境变量。您在此处链接的博客文章中对此进行了描述。这是因为合并 Spring 配置文件发生在初始化 bean(PropertyPlaceholderConfigurer 是一个 bean)之前它可能不会改变,请参阅这个被拒绝的功能请求https://jira.springsource.org/browse/SPR-1358

于 2012-10-15T15:00:42.983 回答