引入thymeleaf爆红
问题
今天在pom文件中引入如下thymeleaf文件的时候,不管怎么刷新maven,thymeleaf一直有红波浪线,如下图
<dependency>
<grounpId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
解决方法
经过在查询资料,解决方法很简单,加一个版本号就行了。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>2.3.3.RELEASE</version>
</dependency>