【IDEA】解决SpringBoot工程打包部署报错:no main manifest attribute, in xxx-eureka-boot-1.0.jar

配置seata时,想把eureka项目部署到linux上,直接使用maven打包生成的jar包只有3K,直接运行时出现如下错误:

      No main manifest attribute, in xxx-eureka-boot-1.0.jar
解决办法:

        将需要打包的SpringBoot工程中的pom文件修改为如下:
 

   
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                2.1.6.RELEASE
                
                    
                        
                            repackage
                        
                    
                
            
        
    

你可能感兴趣的:(spring,boot,eureka,intellij-idea)