我从springboot的yml配置文件里拿到一个list集合
时间: 2023-05-12 20:05:24 浏览: 97
非常感谢您的提问。可以通过以下代码获取Spring Boot的YAML配置文件中的List集合:
```java
@Configuration
@ConfigurationProperties(prefix = "myconfig")
public class MyConfig {
private List<String> myList;
public List<String> getMyList() {
return myList;
}
public void setMyList(List<String> myList) {
this.myList = myList;
}
}
```
其中,`@ConfigurationProperties`注解用于指定配置文件的前缀,`myList`属性对应配置文件中的List集合。在使用时,可以通过`@Autowired`注解注入`MyConfig`类,并调用`getMyList()`方法获取List集合。
希望这个回答能够帮助到您。
阅读全文