th:each="user:${users}不显示内容
检查:
.html文件中的users是否和Controller文件对应(users)
<h4 th:text="${user}" th:each="user,userStat:${users}"></h4>
@RequestMapping("/success")
public String success(Map<String,Object> map){
map.put("users", Arrays.asList("zhangsan","lisi","wangwu"));
return "success";
}