0

我真的不明白这里的问题。我正在尝试在我的 Spring 应用程序中使用属性文件。该文件似乎已被读取,但如果我尝试读取这些值,我会得到空值。

这是我的上下文 xml 的(部分):

<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"
xmlns:aws-context="http://www.springframework.org/schema/cloud/aws/context" 
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-3.0.xsd 
http://www.springframework.org/schema/cloud/aws/context
http://www.springframework.org/schema/cloud/spring-cloud-aws-context.xsd">

<tx:annotation-driven />

<context:component-scan base-package="my.package" />

<context:annotation-config />

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

<!-- OTHER STUFF HERE -->
</beans>

我在 src/main/resources 下有我的 test.properties

当我尝试像这样运行它时:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath*:META-INF/spring/context-test.xml")
public class SimpleTest {

    @Autowired
    private ApplicationContext context;

    @Autowired
    private Environment environment;

    @Test
    public void test() throws Exception {
        System.out.println(environment);
        System.out.println(environment.getProperty("my.test"));
    }
}

输出将是:

StandardEnvironment {activeProfiles=[], defaultProfiles=[default], propertySources=[systemProperties,systemEnvironment]}
null

所以我认为除了系统属性之外,我应该在“propertySources”中看到一些东西,对吗?

此外,如果我将 xml 行更改为:

<context:property-placeholder location="classpath:test.properties2" />

我得到一个 FileNotFound 异常,这意味着文件本身已加载?那么为什么我不能从中加载属性呢?

在 test.properties 我只有这个:

my.test=123456

这里可能是什么问题?

4

1 回答 1

1

属性占位符不会自动向环境公开属性。你应该像这样注入你的财产:

@Value("${my.test}")
private String myTest;
于 2015-07-18T13:48:22.440 回答