application.yml配置list
时间: 2023-09-06 10:09:28 浏览: 118
在application.yml中配置list时,需要使用"-"来组成一个列表集合。同时,属性名称在yml文件中支持连字符"-",比如"four-span",而在Java类中配置属性时需要转为驼峰式,如"fourSpan"。此外,还需要在Java类中配置set和get方法。可以使用@ConfigurationProperties注解来指定配置类的前缀,如@ConfigurationProperties(prefix = "demo.code")。另外,在配置类中需要使用@Configuration注解标记该类为配置类,并使用@Getter和@Setter注解为属性生成get和set方法。在配置类中,可以定义一个List属性来接收yml文件中的列表值。例如,可以创建一个配置类Config,其中包含一个paramInfo属性用来接收列表值,代码如下:
```java
@Configuration
@ConfigurationProperties(prefix = "demo.code")
@Getter
@Setter
public class Config {
private List<ParamInfo> paramInfo;
}
```
这样,通过读取application.yml文件中的配置,并将列表值注入到Config类的paramInfo属性中,以便在应用程序中使用。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [springboot读取yml文件中的list列表、数组、map集合和对象](https://blog.csdn.net/weixin_42274846/article/details/128155678)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *3* [springboot的application.yml如何配置List、Map形式的配置](https://blog.csdn.net/Hope_lee/article/details/105660434)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文