内网开发,Maven本地仓库中存在jar,但idea显示jar包不存在问题解决
1、项目迁移进内网开发,代码和maven仓库拷进内网,本地库中的部分jar包显示没有引入,如下图:
2、idea提示错误信息如下
[ERROR] Failed to execute goal on project zeus-common-redis: Could not resolve dependencies for project com.hsjry:zeus-common-redis:jar:1.0.0-SNAPSHOT: Cannot access hundsun-nexus (http://10.253.40.200:6060/nexus/content/groups/public) in offline mode and the artifact redis.clients:jedis:jar:2.9.0 has not been downloaded from it before. -> [Help 1]
3、查看本地仓库,jar包存在
4、问题出在目录中的多余文件,它们主要包含下载未成功的文件(.lastUpdated),远程仓库的配置信息(_remote.repositories),每次在更新maven项目的时候,每一个jar包路径下的_remote.repositories文件都会同setting.xml中设置的仓库地址id进行判断,如果没有匹配,会自动更新该jar包的相关文件,如果未联网则会出现jar无法发现的错误,导致即使jar存在,maven项目也无法使用该jar的情况。同时由于未联网,当下载失败,会生成后缀为.lastUpdated的文件。如果使用公司的内网仓库,_remote.repositories文件变为_maven.repositories。
删除整个仓库的后缀为.repositories,.lastUpdated的文件,同时为保险,我也删除了校验文件(.sha1后缀),idea中删除整个项目(root项目)的依赖,重新引入之后,问题解决。
删除后缀为.lastUpdated的文件脚本
windows下:delLastUpdated.bat
@echo off
rem create by NettQun
rem 这里写你的仓库路径
set REPOSITORY_PATH=E:\java12\ProgRepository\zeusRepository
rem 正在搜索...
for /f "delims=" %%i in ('dir /b /s "%REPOSITORY_PATH%\*lastUpdated*"') do (
echo %%i
del /s /q "%%i"
)
rem 搜索完毕
pause