欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

thymeleaf的配置

程序员文章站 2022-07-02 17:02:18
1、在springboto项目中使用thymeleaf标签,必须先添加依赖,如下。 2、在application.properties中配置一些常用的thymeleaf,如下。 可参考博客:https://blog.csdn.net/ice_lemon_g/article/details/73609 ......

1、在springboto项目中使用thymeleaf标签,必须先添加依赖,如下。

<dependency>
  1. <groupid>org.springframework.boot</groupid>
  2. <artifactid>spring-boot-starter-thymeleaf</artifactid>
  3. </dependency>

2、在application.properties中配置一些常用的thymeleaf,如下。

spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.check-template-location=true spring.thymeleaf.suffix=.html spring.thymeleaf.encoding=utf-8 spring.thymeleaf.content-type=text/html spring.thymeleaf.mode=html5 spring.thymeleaf.cache=false

可参考博客: