19

春のJavaConfigでは、プロパティソースを定義して環境に注入できます

@PropertySource("classpath:application.properties")

@Inject private Environment environment;

xmlの場合、どうすればよいですか?context:property-placeholder を使用し、JavaConfig クラス @ImportResource で xml をインポートしています。しかし、environment.getProperty("xx") を使用してプロパティ ファイルで定義されたプロパティを取得できません。

<context:property-placeholder location="classpath:application.properties" />
4

2 に答える 2

7

私の知る限り、純粋な XML でこれを行う方法はありません。とにかく、ここに私が今朝行った小さなコードがあります:

まず、テスト:

public class EnvironmentTests {

    @Test
    public void addPropertiesToEnvironmentTest() {

        ApplicationContext context = new ClassPathXmlApplicationContext(
                "testContext.xml");

        Environment environment = context.getEnvironment();

        String world = environment.getProperty("hello");

        assertNotNull(world);

        assertEquals("world", world);

        System.out.println("Hello " + world);

    }

}

次に、クラス:

public class PropertySourcesAdderBean implements InitializingBean,
        ApplicationContextAware {

    private Properties properties;

    private ApplicationContext applicationContext;

    public PropertySourcesAdderBean() {

    }

    public void afterPropertiesSet() throws Exception {

    PropertiesPropertySource propertySource = new PropertiesPropertySource(
            "helloWorldProps", this.properties);

    ConfigurableEnvironment environment = (ConfigurableEnvironment) this.applicationContext
            .getEnvironment();

    environment.getPropertySources().addFirst(propertySource);

    }

    public Properties getProperties() {
        return properties;
    }

    public void setProperties(Properties properties) {
        this.properties = properties;
    }

    public void setApplicationContext(ApplicationContext applicationContext)
            throws BeansException {

        this.applicationContext = applicationContext;

    }

}

そして、testContext.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans ...>

    <util:properties id="props" location="classpath:props.properties" />

    <bean id="propertySources" class="org.mael.stackoverflow.testing.PropertySourcesAdderBean">
        <property name="properties" ref="props" />
    </bean>


</beans>

そして props.properties ファイル:

hello=world

ApplicationContextAwareBean を使用してConfigurableEnvironmentからを取得するだけ(Web)ApplicationContextです。PropertiesPropertySource次に、に aを追加するだけですMutablePropertySources

于 2012-12-06T16:03:31.413 に答える
-1

ファイル「application.properties」のプロパティ「xx」にアクセスするだけでよい場合は、xml ファイルで次の Bean を宣言することにより、Java コードを使用せずにアクセスできます。

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="application.properties"/>
</bean>

次に、プロパティを Bean に注入する場合は、それを変数として参照するだけです。

<bean id="myBean" class="foo.bar.MyClass">
        <property name="myProperty" value="${xx}"/>
</bean>
于 2016-11-13T23:17:32.393 に答える