如果我在application.yaml中有以下属性:
myPro:
prop1: prop1value
prop2: prop2value
....
有没有办法将其加载到Java Properties
对象中?
答案 0 :(得分:7)
默认情况下,Spring已将所有这些应用程序属性放在其Properties
包装器的环境中,例如:
@Autowired
private Environment environment;
public void stuff() {
environment.getProperty("myPro.prop1");
environment.getProperty("myPro.prop2");
}
但是,如果您只想使用这些值,则可以始终使用@Value
注释,例如:
@Value("${myPro.prop1}")
private String prop1;
@Value("${myPro.prop2}")
private String prop2;
最后,如果你真的想要一个Properties
对象只包含myPro
中的所有内容,你可以创建以下bean:
@ConfigurationProperties(prefix = "myPro")
@Bean
public Properties myProperties() {
return new Properties();
}
现在您可以自动装配属性并使用它们:
@Autowired
@Qualifier("myProperties")
private Properties myProperties;
public void stuff() {
myProperties.getProperty("prop1");
myProperties.getProperty("prop2");
}
在这种情况下,您不一定要将其绑定到Properties
,但您可以使用自定义POJO,只要它具有字段名prop1
和另一个字段名{{1 }}
这三个选项也列在the documentation:
中可以使用
prop2
注释将属性值直接注入到bean中,通过Spring的@Value
抽象访问或通过Environment
绑定到结构化对象。
答案 1 :(得分:0)
我通过对pom.xml
的依赖来解决了我的问题
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>