Spring没有加载属性

时间:2015-05-30 17:41:50

标签: java spring properties-file

在@Configuration类中引用applicationContext.xml时,Spring不加载属性

@Configuration
@ImportResource("classpath:applicationContext.xml")
public class SpringConfig {

  @Autowired
    private MyBean1 myBean1;

  @Bean
    public static PropertySourcesPlaceholderConfigurer placeHolderConfigurer() {
        return new PropertySourcesPlaceholderConfigurer();

    }

  @Bean(name = "myBean2")
    public MyBean2 myBean2() {
    MyBean2 bean2 = new MyBean2();
    return bean2;
    }


}

的applicationContext.xml:

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

  <bean id="myBean1" class="com.foo.bar.MyBean1">
        <property name="name" value="${name}" />  
        <property name="age" value="${age}" />  
    </bean>

Test.properties:(在类路径中)

name=foo
age=10

当我使用以下代码行加载applicationContext.xml文件时,它可以工作:

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

我看到以下行打印出来:

2015-05-30 10:01:08.277 [INFO] org.springframework.beans.factory.config.PropertyPlaceholderConfigurer:172 - Loading properties file from class path resource [test.properties]
2015-05-30 10:01:08.292 [INFO] org.springframework.beans.factory.support.DefaultListableBeanFactory:596 - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@5c001eb0: defining beans [placeholderConfig,myBean1]; root of factory hierarchy

使用&#34; myBean1&#34;加载test.properties文件时没有问题。从属性文件中获取$ {name}和{age}的值。

我遇到的问题是当我尝试加载SpringConfig时:

ApplicationContext ctx =   new AnnotationConfigApplicationContext(SpringConfig.class);

SpringConfig类将applicationContext.xml引用为:@ImportResource(&#34; classpath:applicationContext.xml&#34;)

我看到的错误是:

org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'myBean1' defined in class path resource [applicationContext.xml]: Could not resolve placeholder 'name' in string value "${name}"
                            at org.springframework.beans.factory.config.PlaceholderConfigurerSupport.doProcessProperties(PlaceholderConfigurerSupport.java:209)
                            at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.processProperties(PropertySourcesPlaceholderConfigurer.java:174)
                            at org.springframework.context.support.PropertySourcesPlaceholderConfigurer.postProcessBeanFactory(PropertySourcesPlaceholderConfigurer.java:151)
                            at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:694)
                            at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:669)
                            at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:461)
                            at org.springframework.context.annotation.AnnotationConfigApplicationContext.<init>(AnnotationConfigApplicationContext.java:73)

简而言之,当我使用ClassPathXmlApplicationContext加载applicationContext时,我没有问题:

工作:

ApplicationContext context = new ClassPathXmlApplicationContext(&#34; applicationContext.xml&#34;);

但是当它被SpringConfig引用时,我发现applicationContext没有看到我的属性文件。

不工作:

ApplicationContext ctx = new AnnotationConfigApplicationContext(SpringConfig.class);

请注意,test.properties位于我的类路径中,它与缺少的属性文件或其他内容无关。

我不知道是否必须对AnnotationConfigApplicationContext使用不同的方法,因为我需要将myBean1自动连接到SpringConfig中,而myBean1使用test.properties文件中的一些属性。

1 个答案:

答案 0 :(得分:5)

使用时

new AnnotationConfigApplicationContext(SpringConfig.class);

您正在注册用于解析属性的两个PlaceholderConfigurerSupport bean。一个通过Java

@Bean
public static PropertySourcesPlaceholderConfigurer placeHolderConfigurer() {
    return new PropertySourcesPlaceholderConfigurer();

}

和一个通过导入的XML

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

在解析属性时,PropertySourcesPlaceholderConfigurer bean是快速失败的。也就是说,如果它没有找到匹配项,它将抛出异常(实际上,执行该解析的嵌套类将执行此操作)。

由于您的PropertySourcesPlaceholderConfigurer尚未使用任何locations进行初始化,因此无法解析${name}${age}的解决方案(它有一些来源,但不是你的test.properties文件。

正确设置bean以查找属性文件

@Bean
public static PropertySourcesPlaceholderConfigurer placeHolderConfigurer() {
    PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer = new PropertySourcesPlaceholderConfigurer();
    propertySourcesPlaceholderConfigurer.setLocation(new ClassPathResource("test.properties"));
    return propertySourcesPlaceholderConfigurer;
}

或完全删除它。如果删除它,Spring将使用XML中正确配置的PropertyPlaceholderConfigurer bean。