引入thymeleaf爆红

引入thymeleaf爆红


问题

今天在pom文件中引入如下thymeleaf文件的时候,不管怎么刷新maven,thymeleaf一直有红波浪线,如下图

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

引入thymeleaf爆红

解决方法

经过在查询资料,解决方法很简单,加一个版本号就行了。

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

引入thymeleaf爆红

顺利解决,记录一下。

上一篇:springmvc 整合 thymeleaf


下一篇:整合SSM