thymeleaf

1.Thymeleaf官网:https://www.thymeleaf.org/

2.Thymeleaf在Github的主页:http://github.com/thymeleaf/thymeleaf

3.Spring官方文档:https://docs.spring.io/spring-boot/docs/2.1.6.RELEASE/reference/htmlsingle/#using-boot-starter

 

对应的POM文件: https://github.com/spring-projects/spring-boot/blob/v2.1.6.RELEASE/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml

<dependencies>
  <dependency>
    <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter</artifactId>
  </dependency>
  <dependency>
    <groupId>org.thymeleaf</groupId>
    <artifactId>thymeleaf-spring5</artifactId>
  </dependency>
  <dependency>
    <groupId>org.thymeleaf.extras</groupId>
    <artifactId>thymeleaf-extras-java8time</artifactId>
  </dependency>
</dependencies>

 

posted @ 2021-01-12 19:07  bnewky0319  阅读(235)  评论(0编辑  收藏  举报