解决方式:https://zhuanlan.zhihu.com/p/139239261
或
https://blog.csdn.net/qq_43705131/article/details/
<!-- 配置阿里云仓库 -->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
@echo off
rem 这里写你的仓库路径
set REPOSITORY_PATH=C:\develop\Maven\apache-maven-3.5.3\respository
rem 正在搜索...
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"') do (
del /s /q %%i
)
rem 搜索完毕
pause
保存,然后双击执行脚本就可以删除lastUpdated文件,然后点击重新导入Maven依赖的按钮
Maven仓库依赖存在依旧报错
我的依赖问题到这一步才得到解决,好累,不过问题终于解决了!
有两种解决方式:
- 把pom.xml中对应的依赖先删除,然后刷新右侧,之后再把依赖粘贴到pom.xml中,再次刷新右侧就好了
- 从本地仓库将对应的包删除掉,然后让maven重新下载
- 比如你要删除spring-boot-starter-web-2.1.8.RELEASE.jar,你要进入Maven仓库路径C:\develop\Maven\apache-maven-3.5.3\respository\org\springframework\boot\spring-boot-starter-web\2.1.8.RELEASE\spring-boot-starter-web-2.1.8.RELEASE.jar,然后进行删除