我使用Spring ApplicationContextInitializer将PropertySources添加到Enviroment。我已经验证该部分正在工作,因为它将属性加载到PropertySources中。我正在努力解决的部分是弄清楚如何访问Spring XML配置中ApplicationContextInitializer中加载的Property值以及Java代码本身。
这是我的ApplicationContextInitializer的一个信息:
public class ExternalPropertiesApplicationContextInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {
@Override
public void initialize(ConfigurableApplicationContext applicationContext) {
Properties properties = load_properties_from_external_source();
PropertiesPropertySource propertySource = new PropertiesPropertySource("external", properties);
applicationContext.getEnvironment().getPropertySources().addFirst(propertySource);
}
}
所以这会加载我的属性,它具有键值对,如:
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mydb
jdbc.username=user
jdbc.password=passwd
My Spring配置文件如下所示:
<context:component-scan base-package="com.example"/>
<context:property-placeholder ignore-resource-not-found="true" system-properties-mode="OVERRIDE"/>
<bean id="myds" class="org.apache.tomcat.jdbc.pool.DataSource" destroy-method="close">
<property name="driverClassName" value="${jdbc.driverClassName}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
这是失败的,因为它无法识别${jdbc.driverClassName}
。我也试过了#{external.jdbc.driverClassName}
也失败了。第一个失败是因为我没有在我的Spring配置文件中显式加载jdbc.properties(这是意图)。后者失败是因为它无法找到external
bean。我错过了什么步骤?如何公开外部加载的属性值?
我也有像这样的Java类:
package com.example;
@Component
public class MyClass {
@Value("${jdbc.url}")
private String jdbcUrl;
}
与Spring配置类似,如何访问初始化时加载的jdbc.url属性值?
哦,这是web.xml的一个信息:
<context-param>
<param-name>contextInitializerClasses</param-name>
<param-value>com.example.ExternalPropertiesApplicationContextInitializer</param-value>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
答案 0 :(得分:0)
Spring配置文件存在一些问题,这是罪魁祸首。
具体来说,在标题中,我有:
<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">
尽管是在Spring 3.1上。这导致Spring恢复到旧的PropertyPlaceholderConfigurer而不是新的PropertySourcesPlaceholderConfigurer。
一旦我将3.0.xsd引用更改为3.1.xsd,它就开始解决问题了。新标题如下所示:
<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.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
第二个问题是这一行:
<context:property-placeholder ignore-resource-not-found="true" system-properties-mode="OVERRIDE"/>
由于system-properties-mode属性,Spring再次回复到旧的PropertyPlaceholderConfigurer而不是新的PropertySourcesPlaceholderConfigurer。
使用旧的PropertyPlaceholderConfigurer时,它不会从新环境中获取值,这就是Spring Context配置中没有获取属性值的原因。