我想通过.proprerties文件配置我的bean字符串字段。但它不会取代值键,意味着它回显“$ {value}”字符串。我的代码如下:
主要课程:
public class Main {
public static void main(String[] args) {
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-config.xml");
ValuesContainer valuesContainer = (ValuesContainer) applicationContext.getBean("container");
System.out.println(valuesContainer.getValue()); //echoes "${value}" instead of Ho-ho-ho!
}
}
应用程序上下文:
.....
<context:annotation-config />
<context:component-scan base-package="bean"/>
豆:
package bean;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
@Component("container")
@Scope("singleton")
@PropertySource(value = "classpath:app.properties")
public class ValuesContainer {
@Value("${value}")
private String value;
public String getValue() {
return value;
}
}
app.properties:
value = Ho-ho-ho!
答案 0 :(得分:2)
您的配置中似乎缺少PropertySourcesPlaceholderConfigurer。
请参阅this post。
答案 1 :(得分:2)
@PropertySource
应与@Configuration
一起使用。
您需要创建一个单独的@Configuration
类,在其上添加注释@PropertySource
并将其添加到您的应用程序上下文中(或让<context:component-scan>
添加它)。
或者,您可以通过编程方式using Environment
配置应用程序上下文的属性源。