1. Unable to find main class 实践方法:添加main方法 1 2 3 4 5 publicclassTestApp { publicstaticvoidmain(String[] args) { } } 2.找不到dependency的module 1 2 3 4 5 6 7 8 9 10 11 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-mav...
对于多模块的springboot项目 如果只是提供依赖,打包成普通jar包就可以了,不需要可执行的jar包,因此就不要springboot打包插件和主启动类,相当于该模块为一个普通的maven项目 如果即需要普通的jar,也需要可执行的jar,就需要添加打包插件,并且增加springboot主启动类,然后就打包成两个jar包...
当我运行测试代码的时候项目打包出错:(由于报的错没有详细记录) 其中有这个提示: [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:...repackage failed: Unable to find mainclass 控制台就两个红色单词: Process terminated; 怎么解决? 还记得之前创建的那个子子目录吗? 要知...
当我运行测试代码的时候项目打包出错:(由于报的错没有详细记录) 其中有这个提示: [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:...repackage failed: Unable to find mainclass 控制台就两个红色单词: Process terminated; 怎么解决? 还记得之前创建的那个子子目录吗? 要知...
该错误的原因是api模块的父模块中包含了这个build插件,所有api模块也继承了这个插件,由于这个插件是针对XXXspringbootApplication.class这个入口类的,当api模块中没有这个入口类时就会出现Unable to find main class错误。 解决方案:删除父模块pom文件中的下述代码即可。
spring-boot-maven-plugin:2.5.3:repackage failed: Unable to find main class 没办法那就接着造呗。 去网上搜了许多这种错误的解决方案,终于找到了: 该博客地址:https://www.dandelioncloud.cn/article/details/1370378236395646978 这个博客的解决方式也很简单: ...