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>
<groupid>org.springframework.boot</groupid>
<artifactid>spring-boot-starter-thymeleaf</artifactid>
</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
可参考博客:
下一篇: jquery实现楼层滚动效果
推荐阅读