java获取yml文件配置
时间: 2023-05-15 07:07:56 浏览: 582
Spring Boot技术知识点:如何获取application.yml配置文件里的相关属性(方法1)
5星 · 资源好评率100%
可以使用Spring框架中的YamlPropertiesFactoryBean类来获取yml文件配置。具体步骤如下:
1. 在Spring配置文件中添加以下代码:
```
<bean id="yamlProperties" class="org.springframework.beans.factory.config.YamlPropertiesFactoryBean">
<property name="resources" value="classpath:config.yml"/>
</bean>
```
其中,value属性指定yml文件的路径。
2. 在Java代码中使用以下代码获取配置:
```
@Autowired
private Properties yamlProperties;
String value = yamlProperties.getProperty("key");
```
其中,key为yml文件中的配置项名称。
阅读全文