Thymeleaf枚举值以下拉列表的相反顺序排列

时间:2017-06-13 09:04:26

标签: java html spring-boot enums thymeleaf

我有一个具有枚举属性的域对象,我想显示一个包含所有可能的枚举值的下拉列表,但顺序相反

<select th:field="*{level}" >
                                        <option th:each="level : ${ T(com.nicinc.enums.AlarmLevelEnum).values()}" 
                                                th:value="${level}" 
                                                th:text="${level}"></option>
                                    </select> 

我能改变吗?

0 个答案:

没有答案