Spring Boot中yml配置文件Map集合注入及使用方式

本文内容纲要:Spring Boot" title="Spring Boot">Spring Boot中yml配置文件Map集合注入及使用方式

yml配置文件

maps: "{key1: 'value1', key2: 'value2'}"

java中

@Value("#{${maps}}")  

private LinkedHashMap maps;

我这里之所以用LinkedHashMap类型 是因为我想要是有序的 可以根据自己的来

thymeleaf遍历

<select class="form-control" name="maps" >

<option th:each="item,m:${map}" th:value="${m.current.key}" th:text="${m.current.value}" required></option>

</select>

本文内容总结:Spring Boot中yml配置文件Map集合注入及使用方式

原文链接:https://www.cnblogs.com/pxblog/p/14747964.html

以上是 Spring Boot中yml配置文件Map集合注入及使用方式 的全部内容, 来源链接: utcz.com/z/296054.html

回到顶部