SpringBoot使用thymeleaf模板引擎

Posted Coreqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot使用thymeleaf模板引擎相关的知识,希望对你有一定的参考价值。

(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模板引擎的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot中web开发-thymeleaf模板引擎的使用

SpringBoot笔记(五)模板引擎thymeleaf和freemarker

Spring Boot Thymeleaf 模板引擎的使用

SpringBoot:2.SpringBoot整合Thymeleaf模板引擎渲染web视图

SpringBoot使用thymeleaf模板引擎

SpringBoot基础篇- 静态资源的访问及Thymeleaf模板引擎的使用