Cannot resolve org.springframework.boot:spring-boot-starter-thymeleaf:2.7.5-SNAPSHOT

在导入spring-boot-starter-thymeleaf依赖的,提示标题所示的错误,也点击了下面的Clean up the broken artifacts data (.lastUpdated files) and reload the project.提示清除lastUpdated的链接。但是没有效果。

Cannot resolve org.springframework.boot:spring-boot-starter-thymeleaf:2.7.5-SNAPSHOT 

Clean up the broken artifacts data (.lastUpdated files) and reload the project.

 链接清除无法成功后,去网上查了链接里的.lastUpdated files意思是由于经常下载Jar包时,网络不稳定导致Jar包下载失败,有大量的lastUpdated文件。使用了网上的批量删除脚本。了

建一个文件xxx.bat的文件,把下面代码复制进去,把 REPOSITORY_PATH改为自己厂库的路径,然后运行

@echo off
set REPOSITORY_PATH=F:\Maven\apache-maven-3.5.4\mvn_rep
rem 正在搜索...
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"') do (
    del /s /q %%i
)
rem 搜索完毕
pause

 但是还是没有效果,无奈只能继续去网上找。

最后摸索一个小时才找到解决办法:在导入依赖时加入版本信息<version>2.7.3</version>

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

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值