SpringBoot 2.0 踩的坑:thymeleaf layout 模板失效

最新学习 spring boot,参考官方例子搭建项目。  用 thymeleaf layout 模板时,页面的内容怎么也嵌不到模板页去。

各种查找排查,弄了半天发现 spring boot 2.0 里 没有thymeleaf-layout-dialect 包 顿时癫狂。。1.5里面有,而2.0没有? 不管怎么样,问题是解决了。写个备忘录

增加maven配置:


   com.github.zhanhb
   thymeleaf-layout-dialect</artifactId>
   2.3.0

spring boot 2.0    spring-boot-starter-thymeleaf配置:

SpringBoot 2.0 踩的坑:thymeleaf layout 模板失效_第1张图片

spring 1.5.9  spring-boot-starter-thymeleaf配置:

SpringBoot 2.0 踩的坑:thymeleaf layout 模板失效_第2张图片

你可能感兴趣的:(spring)