Maven之导入thymeleaf依赖飘红问题及解决
作者:所遇所思
这篇文章主要介绍了Maven之导入thymeleaf依赖飘红问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
Maven导入thymeleaf依赖飘红
1、运行环境
- 操作系统:win10
- jdk版本:1.8
- idea版本:2020.1
- maven版本:3.3.9
- springBoot版本:2.0.0
2、遇到的问题
在导入thymeleaf依赖时,刷新maven还是飘红,换版本同样是,我在maven仓库中找有
spring-boot-starter-thymeleaf
3、解决办法
1.在本地仓库中删除该文件,重新下载到本地仓库。
2.再换其他版本,我换成2.1.3
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> <version>2.1.3.RELEASE</version> </dependency>
附件:
thymeleaf在Maven的版本配置
<properties> <thymeleaf.version>3.0.11.RELEASE</thymeleaf.version> <thymeleaf-layout-dialect.version>2.1.1</thymeleaf-layout-dialect.version> </properties>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。