在导入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>