Spring Boot集成thymeleaf模板引擎

添加依赖


    org.springframework.boot
    spring-boot-starter-thymeleaf


    net.sourceforge.nekohtml
    nekohtml

application.yml配置thymeleaf相关属性

spring:
  thymeleaf:
    #开发时设为false关闭缓存,便于调试,生产环境为true
    cache: false
    prefix: classpath:/templates/
    suffix: .html
    encoding: UTF-8
    content-type: text/html
    #声明thymeleaf使用非严格的html
    mode: LEGACYHTML5

你可能感兴趣的:(Spring Boot集成thymeleaf模板引擎)