springboot-模板引擎Thymeleaf

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wu2374633583/article/details/84020313

1 引入Thymeleaf

<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-thymeleaf</artifactId>
		</dependency>

切换thymeleaf版本

如果自动引入的版本太低,那我们就需要自己引入指定版本
但是目前springboot对这一方面做了修改,引入的是最新的版本。

<properties>
<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>        
<!‐‐ 布局功能的支持程序  thymeleaf3主程序  layout2以上版本 ‐‐>        
<!‐‐ thymeleaf2   layout1‐‐>        
<thymeleaf‐layout‐dialect.version>2.2.2</thymeleaf‐layout‐dialect.version>        
  </properties>

猜你喜欢

转载自blog.csdn.net/wu2374633583/article/details/84020313