thymeleaf是一个模板引擎
thymeleaf命名空间
<html lang="en" xmlns:th="http://www.thymeleaf.org">
thymeleaf和spring security整合命名空间:
xmlns:sec="http://www.w3.org/1999/xhtml"
推荐自行去网站
https://mvnrepository.com/
内搜索需要的最新版本的依赖。
<!--thymeleaf启动器坐标-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>