【异常】Caused by: java.lang.IllegalStateException: Zip64 archives are not supported

1 自己打包Spring boot项目依赖了第三方的Phoenix jar包过大,导致启动后报错

参考了这篇博客:https://cloud.tencent.com/developer/ask/135010

发现是不支持文件数过多,然后根据文章:

【异常】Caused by: java.lang.IllegalStateException: Zip64 archives are not supported_第1张图片

说到需要改变文件创建方式,自己再点击进去去查询问题:

https://github.com/spring-projects/spring-boot/issues/2895

在这个问题列表后面,大家讨论了,大概有人提交了修复bug,然后,自己去看,发现支持的版本要到Spring boot 2.2.x的版本,现在发布版本最新的才2.0.3,我绝望了,直到最后发现。

【异常】Caused by: java.lang.IllegalStateException: Zip64 archives are not supported_第2张图片

As a workaround, I switched to use maven shade plugin. It worked!

 

改变Maven的打包插件采用shade插件,查了下这个插件貌似就是把大的jar包拆分

自己的maven shade插件配置,就只保留了这一个打包,自己的参数Main方法,根据自己的项目去调整


    org.apache.maven.plugins
    maven-shade-plugin
    
        
            org.springframework.boot
            spring-boot-maven-plugin
            2.1.6.RELEASE
        
    
    
    
    
    
    
    
    
        true
        true
        
            
                *:*
                
                    META-INF/*.SF
                    META-INF/*.DSA
                    META-INF/*.RSA
                
            
        
    
    
        
            package
            
                shade
            
            
                
                    
                        META-INF/spring.handlers
                    
                    
                        META-INF/spring.factories
                    
                    
                        META-INF/spring.schemas
                    
                    
                    
                        
                            com.wm.bigdata.WmBigdataBiApplication
                        
                    
                
            
        
    

  

 

最后解决了问题,感谢,最后回复的哪位小哥,解决了我的问题

 

转载于:https://www.cnblogs.com/QuestionsZhang/p/11254488.html

你可能感兴趣的:(【异常】Caused by: java.lang.IllegalStateException: Zip64 archives are not supported)