转载

SpringBoot集成Thymeleaf模版引擎

一、前言

  1. Thymeleaf 是一个优秀的、面向Java 的XML庆HTML/HTML5 页面模板,具有丰

富的标签语言和函数。因此,在使用Spring Boot 框架进行页面设计时, 一般都会选择Thymeleaf 模板。

  1. 类似thymeleaf的模版还有freemarker,推荐使用thymeleaf,前后端分离。

二、springboot集成Thymeleaf模版引擎

  1. pom.xml引入依赖

    <dependency>
               <groupId>org.springframework.boot</groupId>
               <artifactId>spring-boot-starter-thymeleaf</artifactId>
           </dependency>
  2. application.properties中配置:

    ##去除thymeleaf的html严格校验
    spring.thymeleaf.mode=LEGACYHTML5
    #设定thymeleaf文件路径 默认为src/main/resources/templates
    spring.freemarker.template-loader-path=classpath:/templates
  3. 在controller中书写相关代码,注意controller层中 注解使用@controller ,不要是用@RestController,否则就会出现页面返回字符串而不是正常的html页面。
原文  https://segmentfault.com/a/1190000019544089
正文到此结束
Loading...