其他分享
首页 > 其他分享> > springboot:web开发-Thymeleaf

springboot:web开发-Thymeleaf

作者:互联网

1、thymeleaf依赖

<dependency>
    <groupId>org.thymeleaf</groupId>
    <artifactId>thymeleaf-spring5</artifactId>
    <version>3.0.12.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.thymeleaf.extras</groupId>
    <artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>

2、thymeleaf命名空间

xmlns:th=“http://www.thymeleaf.org”

3、thymeleaf的使用文档

https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#what-is-thymeleaf

4、thymeleaf官方文档

https://www.thymeleaf.org/

标签:web,www,https,springboot,Thymeleaf,thymeleaf,extras,3.0,org
来源: https://blog.csdn.net/qq_37975919/article/details/114531433