Springboot repackage failed: Unable to find a single main class from the following candidates

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

repackage failed: Unable to find a single main class from the following candidates

解决:

情况1:

在pom.xml文件中加入主类,用于指定加载的主类(在properties中,加入一个start-class的属性,用于告诉spring boot maven plugin哪个类是入口类即可)


        com.itmuch.cloud.common.Application
    
  •  

情况2:

多模块依赖时,如果类似common之类的module只作为依赖包,而无需作为springboot的application时,以下打包插件不应配置到顶级pom及common的pom中:


   org.springframework.boot
   spring-boot-maven-plugin

具体哪个module需要作为application则配到哪个module中则可。

转载于:https://my.oschina.net/u/199525/blog/1486546

你可能感兴趣的:(Springboot repackage failed: Unable to find a single main class from the following candidates)