Thymeleaf 3.0 默認(rèn)不包含布局模塊
問(wèn)題:
啟動(dòng)項(xiàng)目的時(shí)候發(fā)現(xiàn)首頁(yè)空白,查看后臺(tái)也沒(méi)有任何的報(bào)錯(cuò)信息
原因:
Spring Boot 2.0 中spring-boot-starter-thymeleaf 包默認(rèn)并不包含布局模塊,需要使用的時(shí)候單獨(dú)添加。
解決方案:
<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
</dependency>