码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot使用thymeleaf模板引擎

时间:2019-01-26 13:22:50      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:ram   页面   col   --   rop   class   temp   自定义   dia   

(1)、添加pom依赖

  

1         <dependency>
2             <groupId>org.springframework.boot</groupId>
3             <artifactId>spring-boot-starter-thymeleaf</artifactId>
4         </dependency>

 

  *  SpringBoot1.x 默认的thymeleaf版本低,如果要自定义版本,需要在pom properties 覆写SpringBoot默认的thymeleaf版本号

  

1     <properties>
2         <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version>
3         <!--thymeleaf3需要布局功能layout2以上版本-->
4         <thymeleaf-layout-dialect.version>2.3.0</thymeleaf-layout-dialect.version>
5     </properties>

  

  *  SpringBoot2.x 无需此操作

 

(2)、将Html页面放至classpath:/templates/下,thymeleaf模板引擎将自动渲染

 

SpringBoot使用thymeleaf模板引擎

标签:ram   页面   col   --   rop   class   temp   自定义   dia   

原文地址:https://www.cnblogs.com/fanqisoft/p/10323136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!