java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Maven导入thymeleaf依赖飘红

Maven之导入thymeleaf依赖飘红问题及解决

作者:所遇所思

这篇文章主要介绍了Maven之导入thymeleaf依赖飘红问题及解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

Maven导入thymeleaf依赖飘红

1、运行环境

2、遇到的问题

在导入thymeleaf依赖时,刷新maven还是飘红,换版本同样是,我在maven仓库中找有

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>

附件: 

maven依赖地址

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>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。 

您可能感兴趣的文章:
阅读全文