问题
IDEA 重启后仍然:jar已经导入,maven依旧报红
maven仓库实际已经下载了全部依赖
但idea依然显示找不到依赖
解决方法一
首先确定maven仓库是正确的。
剪切pom里面的那些报红依赖点击刷新按钮,然后那些报红依赖消失,如果没消失去注释在<properties>中与该jar相关信息,再刷新然后重新将那些依赖、<properties>版本信息放进去,再次刷新之前报红的会不再报红
解决方法二
在Maven Projects工具栏右键红线依赖,Download Sources and Documentation, 然后再reimport,既然奇迹般解决了
注:更新前注意更改设置文件中 <mirrors> 配置
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>uk</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://uk.maven.org/maven2/</url>
</mirror>
<mirror>
<id>CN</id>
<name>OSChina Central</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>nexus</id>
<name>internal nexus repository</name>
<!-- <url>http://192.168.1.100:8081/nexus/content/groups/public/</url>-->
<url>http://repo.maven.apache.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>