1. 程式人生 > >spring boot Thymeleaf模板引擎 最簡單輸出例子

spring boot Thymeleaf模板引擎 最簡單輸出例子

test leaf att map 控制器 輸出 span blog hello

spring boot Thymeleaf模板引擎 最簡單輸出例子

控制器代碼如下:

@GetMapping(value = "/test")
public String test(Model model){

List<Boy> boy = new ArrayList<Boy>();
boy.add(new Boy("xx",11));
boy.add(new Boy("yy",22));
boy.add(new Boy("zz",33));
model.addAttribute("boy", boy);
return "helloHtml";
}


模板代碼如下:

<ul>
<li th:each="a:${boy}">
<span th:text="${a.id}"></span>
<span th:text="${a.cupSize}"></span>

</li>
</ul>
 

spring boot Thymeleaf模板引擎 最簡單輸出例子