部署Maven项目会引发java.util.zip.ZipException:无效的LOC标头(错误的签名)


164

运行我的计算机时,出现以下异常mvn install。我什至删除了本地存储库,然后再次运行以获取相同的异常。

[错误]无法在项目核心批次上执行目标org.apache.maven.plugins:maven-shade-plugin:2.1:shade(默认):创建阴影jar时出错:无效的LOC标头(错误签名)-> [帮助1 ]

<?xml version="1.0" encoding="UTF-8"?>
<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-shade-plugin</artifactId>
   <version>2.1</version>
   <configuration>
      <skipTests>true</skipTests>
   </configuration>
   <executions>
      <execution>
         <phase>package</phase>
         <goals>
            <goal>shade</goal>
         </goals>
         <configuration>
            <artifactSet>
               <excludes>
                  <exclude>commons-logging:commons-logging:jar:*</exclude>
               </excludes>
            </artifactSet>
            <filters>
               <filter>
                  <artifact>*:*</artifact>
                  <excludes>
                     <!-- workaround for a spring issues -->
                     <exclude>META-INF/*.SF</exclude>
                     <exclude>META-INF/*.DSA</exclude>
                     <exclude>META-INF/*.RSA</exclude>
                     <!-- don't want to pick up any other log4j.xml -->
                     <exclude>log4j.xml</exclude>
                  </excludes>
               </filter>
            </filters>
            <!-- May be needed to work around another issue in Spring -->
            <transformers>
               <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
                  <resource>META-INF/spring.handlers</resource>
               </transformer>
               <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
                  <resource>META-INF/spring.schemas</resource>
               </transformer>
            </transformers>
         </configuration>
      </execution>
   </executions>
</plugin>

错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugin:2.1:shade (default) on project cores-batch: Error creating shaded jar: invalid LOC header (bad signature) -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-shade-plugin:2.1:shade (default) on project cores-batch: Error creating shaded jar: invalid LOC header (bad signature)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:217)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: org.apache.maven.plugin.MojoExecutionException: Error creating shaded jar: invalid LOC header (bad signature)
    at org.apache.maven.plugins.shade.mojo.ShadeMojo.execute(ShadeMojo.java:528)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
    ... 19 more
Caused by: java.util.zip.ZipException: invalid LOC header (bad signature)
    at java.util.zip.ZipFile.read(Native Method)
    at java.util.zip.ZipFile.access$1400(ZipFile.java:56)
    at java.util.zip.ZipFile$ZipFileInputStream.read(ZipFile.java:679)
    at java.util.zip.ZipFile$ZipFileInflaterInputStream.fill(ZipFile.java:415)
    at java.util.zip.InflaterInputStream.read(InflaterInputStream.java:158)
    at java.io.FilterInputStream.read(FilterInputStream.java:107)
    at org.codehaus.plexus.util.IOUtil.copy(IOUtil.java:189)
    at org.codehaus.plexus.util.IOUtil.copy(IOUtil.java:175)
    at org.apache.maven.plugins.shade.DefaultShader.addResource(DefaultShader.java:427)
    at org.apache.maven.plugins.shade.DefaultShader.shade(DefaultShader.java:186)
    at org.apache.maven.plugins.shade.mojo.ShadeMojo.execute(ShadeMojo.java:458)
    ... 21 more
[ERROR] 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

1
为这个问题制作了一个插件-> github.com/goxr3plus/CorruptedJarsDetector
GOXR3PLUS

1
@ GOXR3PLUS该仓库中没有真正的代码(自述文件中的类除外),甚至没有Maven插件的代码。我认为maven插件实际上是最好的解决方案-或仅仅是现有插件之一的扩展,可以做类似的事情mvn dependencies validate……
Marco13 18-10-13

Marco仓库的代码是大声笑:)
GOXR3PLUS,

Answers:


79

您需要检查哪个罐子出了问题。它必须已损坏。删除该jar并mvn spring-boot:run再次运行命令。一个罐子损坏可能更多,因此每次您需要运行该命令来删除该罐子时,都可能是这样。在我的情况下,mysql,jackson,aspect jars被破坏了mvn spring-boot:run3次,我发现了这个问题并从.m2文件夹中删除了jars 。现在问题已解决。


218

jar文件可能已损坏。尝试删除以下文件夹的内容:

 C:\Users\[username]\.m2\repository

然后右键单击您的项目,选择“ Maven”,“更新项目”,选中“强制更新快照/版本”。


4
这应该标记为解决方案。我相信这也是其他几个没有答案的相关问题的解决方案。谢谢西瓦!
Hack-R

1
非常好..花了7个小时后,我找到了解决方案... KUDOS为您服务....
Sufiyan Ansari

4
这可行,但是删除整个Maven本地存储库不是最佳选择。只要删除相关的jar文件就足够了。
Levent Divilioglu

2
不必删除所有依赖项,在顶部可以找到哪个依赖项的LOC标头不正确。
乌玛尔·法拉兹

2
只是要注意一个明显的事实:当有人invalid LOC header在Gradle构建中遇到时,您只需删除~/.gradle/caches文件夹(Linux)。
Martin Vseticka

110

主要问题是罐子损坏。

要找到损坏的对象,您需要在Eclipse的Breakpoints视图中添加Java Exception Breakpoint,或者您的首选IDE,选择 java.util.zip.ZipException该类,然后重新启动Tomcat实例。

当JVM在ZipException断点处挂起时,您必须转到 JarFile.getManifestFromReference()堆栈跟踪中,并检查属性name以查看文件名。

之后,您应该从文件系统中删除文件,然后右键单击您的项目,依次选择“ Maven”,“更新项目”,然后选中“强制更新快照/版本”。


11
我相信这应该是公认的答案。简单地删除数百个jar文件并重新下载它们并不是一个有效的解决方案。
Mohsen

11
rm -rf .m2 =有效
Jery​​l Cook

2
那里很棒的调试技术。使我免于浪费带宽来下载整个依赖项或工件。谢谢。
Thariq Nugrohotomo

3
伟大的技术!我找不到JarFile框架,但在这里找到它作为ZipFile $ ZipFileInputStream.read框架上的表达式ZipFile.this.name。
rlpatrao

2
此罐子损坏的一个简单示例:stackoverflow.com/a/46623719/3128926 花了2个小时来了解问题所在。顺便说一句,仅删除相关的jar文件就足够了,而不是清除整个maven本地缓存。
Levent Divilioglu

41

gsitgithub / find-currupt-jars.txt中,以下命令列出了存储库中所有损坏的jar文件:

find  /home/me/.m2/repository/ -name "*jar" | xargs -L 1 zip -T | grep error | grep invalid

您可以删除损坏的jar文件,然后重新编译项目。

输出示例:

warning [/cygdrive/J/repo/net/java/dev/jna/jna/4.1.0/jna-4.1.0.jar]:  98304 extra bytes at beginning or within zipfile
  (attempting to process anyway)
file #1:  bad zipfile offset (local header sig):  98304
  (attempting to re-compensate)
zip error: Zip file invalid, could not spawn unzip, or wrong unzip (original files unmodified)

1
sudo find ./repository/ -name "*jar" | sudo xargs -L 1 zip -T | grep error | grep invalid 给我xargs: zip: No such file or directory。这是在Windows上的ubuntu上使用bash,
fyi

1
@ liltitus27此命令行在下的zip -T每个jar上执行(测试)repository,然后过滤哪些jar是无效的压缩文件。您有zip可用的命令吗?
哈维尔,

似乎在bash中,我没有安装zip。我确实发现您发布的确切命令在cygwin中效果很好。而且,它还可以找到坏罐子,谢谢!
liltitus17年

2
你是最棒的,曼!
Igor Masternoy

这个想法是zip -T在每个存储在的jar下运行.m2/repository。在Windows中,您可以/cygdrive/C/Users/torno/.m2/repository像我一样在Cygwin()上运行它,并且我认为您也可以在Windows 10(/mnt/c/Users/torno/.m2/repository)上使用Bash运行它。我没有研究如何使用PowerShell编写等效的脚本,并且我认为使用cmd提示符应该无法实现。
哈维尔

11

我想给我我的实践。

使用您喜欢的IDE,以eclipse为例:

  1. 在异常堆栈中找到合适的位置
  2. 设置条件断点
  3. 调试一下
  4. 它将在异常发生前打印损坏的jar

在此处输入图片说明


1
这是清除整个m2存储库的更好的解决方案,在我看来,这需要花费很多时间才能再次下载。
马丁·卡西迪

5

我的解决方案是mvn使用-X

$ mvn package -X

然后向后看输出,直到看到失败为止,然后继续进行直到看到mvn尝试处理的最后一个jar文件:

...
... <<output ommitted>>
...
[DEBUG] Processing JAR /Users/snowch/.m2/repository/org/eclipse/jetty/jetty-server/9.2.15.v20160210/jetty-server-9.2.15.v20160210.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.607 s
[INFO] Finished at: 2017-10-04T14:30:13+01:00
[INFO] Final Memory: 23M/370M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-shade-plugin:3.1.0:shade (default) on project kafka-connect-on-cloud-foundry: Error creating shaded jar: invalid LOC header (bad signature) -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-shade-plugin:3.1.0:shade (default) on project kafka-connect-on-cloud-foundry: Error creating shaded jar: invalid LOC header (bad signature)

查看失败前的最后一个jar并将其从本地存储库中删除,即

$ rm -rf /Users/snowch/.m2/repository/org/eclipse/jetty/jetty-server/9.2.15.v20160210/

2

看起来您pom文件中的Maven编译器的配置问题。Java源和目标的默认版本为1.5,即使使用的JDK也具有更高版本。

要修复,请添加具有更高java版本的maven编译器插件配置部分,例如:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>3.6.1</version>
  <configuration>
    <source>1.6</source>
    <target>1.6</target>
  </configuration>
</plugin>

有关更多信息,请检查以下链接:

Maven编译器

错误报告


1

这个答案不是给DevOps /系统管理员的,而是给那些使用IDE的人,例如eclipse和 invalid LOC header (bad signature)问题)的人。

您可以强制更新Maven依赖项,如下所示:

在此处输入图片说明

在此处输入图片说明


1

这是一个用Java编写的小型检测器,只需复制并运行:)

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;
import java.util.jar.JarFile;
import java.util.stream.Collectors;

public class JarValidator {

    public static void main(String[] args) throws IOException {
        Path repositoryPath = Paths.get("C:\\Users\\goxr3plus\\.m2");

        // Check if the main Repository Exists
        if (Files.exists(repositoryPath)) {

            // Create a class instance
            JarValidator jv = new JarValidator();

            List<String> jarReport = new ArrayList<>();
            jarReport.add("Repository to process: " + repositoryPath.toString());

            // Get all the directory files
            List<Path> jarFiles = jv.getFiles(repositoryPath, ".jar");
            jarReport.add("Number of jars to process: " + jarFiles.size());
            jarReport.addAll(jv.openJars(jarFiles, true));

            // Print the report
            jarReport.stream().forEach(System.out::println);

        } else {
            System.out.println("Repository path " + repositoryPath + " does not exist.");
        }
    }

    /**
     * Get all the files from the given directory matching the specified extension
     * 
     * @param filePath      Absolute File Path
     * @param fileExtension File extension
     * @return A list of all the files contained in the directory
     * @throws IOException
     */
    private List<Path> getFiles(Path filePath, String fileExtension) throws IOException {
        return Files.walk(filePath).filter(p -> p.toString().endsWith(fileExtension)).collect(Collectors.toList());
    }

    /**
     * Try to open all the jar files
     * 
     * @param jarFiles
     * @return A List of Messages for Corrupted Jars
     */
    private List<String> openJars(List<Path> jarFiles, boolean showOkayJars) {
        int[] badJars = { 0 };
        List<String> messages = new ArrayList<>();

        // For Each Jar
        jarFiles.forEach(path -> {

            try (JarFile file = new JarFile(path.toFile())) {
                if (showOkayJars)
                    messages.add("OK : " + path.toString());
            } catch (IOException ex) {
                messages.add(path.toAbsolutePath() + " threw exception: " + ex.toString());
                badJars[0]++;
            }
        });

        messages.add("Total bad jars = " + badJars[0]);
        return messages;
    }

}

输出量

Repository to process: C:\Users\goxr3plus\.m2
Number of jars to process: 4920
C:\Users\goxr3plus\.m2\repository\bouncycastle\isoparser-1.1.18.jar threw exception: java.util.zip.ZipException: zip END header not found
Total bad jars = 1
BUILD SUCCESSFUL (total time: 2 seconds)

1

我们可以使用至少两个选项在maven中强制执行校验和验证:

1.添加 --strict-checksums到我们的maven命令中。

2.将以下配置添加到我们的maven设置文件中:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                          https://maven.apache.org/xsd/settings-1.0.0.xsd">
    <!--...-->
    <profiles>
        <profile>
            <!--...-->
            <repositories>
                <repository>
                    <id>codehausSnapshots</id>
                    <name>Codehaus Snapshots</name>
                    <releases>
                        <enabled>false</enabled>
                        <updatePolicy>always</updatePolicy>
                        <checksumPolicy>fail</checksumPolicy>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                        <updatePolicy>never</updatePolicy>
                        <checksumPolicy>fail</checksumPolicy>
                    </snapshots>
                    <url>
                        <!--...-->
                    </url>
                </repository>
            </repositories>
            <pluginRepositories>
                <!--...-->
            </pluginRepositories>
            <!--...-->
        </profile>
    </profiles>
    <!--...-->
</settings>

这篇文章中的更多详细信息:https : //dzone.com/articles/maven-artifact-checksums-what


0

除了删除.m2 /存储库,还应从服务器中删除应用程序,运行服务器(不包含应用程序),将其停止,然后再次添加应用程序。现在应该可以工作了。由于某些原因,仅从界面清理服务器文件夹不会产生相同的效果。


0

在将耳朵部署到本地weblogic实例时,我遇到了这个问题。清除本地存储库并建立耳朵再次为我解决了这个问题。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.