我已经花了几个小时用Google搜索,但仍然无能为力。
使用调试器,我可以发现我的数据源中的用户和密码不会被属性文件中的值替换,而是分别像${jdbc.user}
和${jdbc.password}
一样进行解析。
我做错了什么?
这是jdbc.properties文件(位于src / main / resources):
jdbc.username=user
jdbc.password=password
这里是弹簧配置xml:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>jdbc.properties</value>
</property>
</bean>
...
来自pom.xml的依赖:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>
答案 0 :(得分:3)
问题在于您启动应用程序的方式。
XmlBeanFactory parent = new XmlBeanFactory(new ClassPathResource("Parent.xml",SomeClass.class));
final XmlBeanFactory springBeanFactory = new XmlBeanFactory(new ClassPathResource(getClass().getSimpleName() + ".xml", getClass()), parent);
请勿使用BeanFactory
使用ApplicationContext
。
String context = getClass().getSimpleName() + ".xml";
ApplicationContext parent = new ClassPathXmlApplicationContext("Parent.xml");
ApplicationContext child = new ClassPathXmlApplicationContext(new String[] {context}, parent);
BeanFactory
只是豆子的工厂,仅此而已。 ApplicationContext
是关于类固醇的BeanFactory
。它具有完整的生命周期,并具有在生命周期中调用的特殊类型的bean。
检查参考指南的this section。
另一个提示是,使用命名空间来配置占位符支持而不是bean声明,并且总是明智地在其前面加上你希望它加载的位置。
<context:property-placeholder location="classpath:/jdbc.properties" />
关于占位符支持的最后一句话。这个类是BeanFactoryPostProcessor
,它将处理bean定义并替换它们中的占位符。但是,它仅对同一应用程序上下文中的bean执行此操作!如果您在父级中定义了此bean并期望它在子上下文中替换占位符,则不会发生这种情况。
答案 1 :(得分:1)
你需要告诉Spring在类路径中搜索属性文件,否则它将无法找到它。将属性文件位置从jdbc.properties
更改为classpath:/jdbc.properties
。
答案 2 :(得分:0)
请尝试使用此解析器:
<bean class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:jdbc.properties</value>
</list>
</property>
</bean>