在Spring 3.1应用程序中访问propertsources



我正在使用Spring ApplicationContextInitializer向环境添加propertresources。我已经验证了该部分正在工作,因为它正在将属性加载到propertsources中。我正在努力弄清楚如何访问在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

我的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},也失败了。第一个失败是因为我没有显式加载jdbc。属性在我的Spring配置文件(这是目的)。后者因为找不到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>

是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。

当使用旧的propertyplaceholder配置器时,它不会从新环境中拾取值,这就是为什么在Spring上下文配置中没有拾取属性值的原因。

相关内容

  • 没有找到相关文章

最新更新