IDEA发疯导致maven下载回来的jar不完整zip END header not found
具体报错
java: 读取D:\mavenRepository\com\alibaba\druid-spring-boot-starter\1.2.23\druid-spring-boot-starter-1.2.23.jar时出错; zip END header not found
java: java.lang.RuntimeException: java.io.IOException: Error reading file D:\mavenRepository\com\alibaba\druid-spring-boot-starter\1.2.23\druid-spring-boot-starter-1.2.23.jar: zip END header not found
报错原因
出现这个报错原因是因为本地下载回来的jar有问题
jar包如下
解决过程
怀疑了idea版本问题 , 使用的是社区版2023 , 升级为2024.1.4版本还是报错,后续重装了2024.1.4版本的idea , 重启电脑 , 也重新下载了maven , 下载了最新版本3.9.8 , 配置了镜像
setting.xml配置
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
<localRepository>D:\mavenRepository</localRepository>
<mirrors>
<!--阿里云镜像,位于<mirrors>标签中-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
<profiles>
<profile>
<repositories>
<repository>
<id>central-repos</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
</profile>
</profiles>
</settings>
最后
最后也不知道是哪一步解决了,先记录一下 , 有大神知道的话希望评论一下, 先谢过大神们了