Java Incompatible magic value 4022320623

前端 未结 3 706
陌清茗
陌清茗 2020-12-21 10:38

Im getting a strange error when im compiling my code on a server and downloading it and trying to run it on my computer.

Im basically compiling some java files on an

3条回答
  •  [愿得一人]
    2020-12-21 11:22

    If you use Maven te build your project. try to disable resource filtering in maven-war-plugin like that false in POM file:

    
    org.apache.maven.plugins
    maven-war-plugin
    2.3
    
        
            
                false
                WEB-INF/classes
                ${project.basedir}/target/classes
            
        
        false
      
    
    

提交回复
热议问题