SpringBoot打包部署报错:No main manifest attribute, in XXX.jar

在pom 中的,plugin 中 指定 mainClass 属性,暂时先这么处理。

如果你是多 moudle 项目一定要注意,不能再 顶层 parent pom 中添加 mainClass 。在你需要启动的 moudle 中添加。


        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    cn.xx.xx.xx.xxAppApplication
                
                
                    
                        package
                        
                            repackage
                        
                    
                
            
        
    

 

你可能感兴趣的:(spring)