SpringCloud多模块项目打包报错Unable to find main class 把下面的删除,就不会报 找不到包了 <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${java.version}</source> <target>${java.version}</target>...
当我运行测试代码的时候项目打包出错:(由于报的错没有详细记录) 其中有这个提示: [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:...repackage failed: Unable to find mainclass 控制台就两个红色单词: Process terminated; 怎么解决? 还记得之前创建的那个子子目录吗? 要知...
对于多模块的springboot项目 如果只是提供依赖,打包成普通jar包就可以了,不需要可执行的jar包,因此就不要springboot打包插件和主启动类,相当于该模块为一个普通的maven项目 如果即需要普通的jar,也需要可执行的jar,就需要添加打包插件,并且增加springboot主启动类,然后就打包成两个jar包...
最近在开发中,遇到这样一个问题,一个通用的工具类项目,在进行打包时,出现repackage failed: Unable to find main class提示找不到主类问题,我就想,我这个项目是一个通用的工具类,不是一个SpringBoot Web工程,我又不需要Main方法的程序启动入口,就很纳闷,到底是什么原因导致这个问题,后来看了一下依赖的父项目, <...
unable to find main class 这是因为什么? 是因为我的jcdemo-common 这个模块是个没有main函数入口的模块,只是用于提供jar依赖给其他的模块使用。 目前我的项目结构为: jcdemo-parent 这个是父模块 jcdemo-common 这个是基础的公共类模块 jcdemo-myWebA 这是一个web A项目,打包设置是war ,里面引用了common的ja...
程序包是da-core工程的包,解压编译的jar文件发现该jar本打包成了spring-boot的可执行jar,这不是我想要的结果。 原有的da-core包中maven插件配置如下: 代码语言:javascript 复制 <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin>...
java.lang.RuntimeException: Unable to instantiate activity 记录一个很奇怪的问题,项目之前一直是正常的,突然有一天开始项目打包或者运行后一打开程序就崩溃,有时甚至新建一个项目都会崩溃,被这个奇怪的问题卡了好几天,后面勉强找到一个解决办法 下面是大概的报错我的解决办法是点击下面的按钮 点击这个Edit按钮 然后...
spring-boot-maven-plugin:2.5.3:repackage failed: Unable to find main class 没办法那就接着造呗。 去网上搜了许多这种错误的解决方案,终于找到了: 该博客地址:https://www.dandelioncloud.cn/article/details/1370378236395646978 这个博客的解决方式也很简单: ...
SpringBoot多模块项目打包问题 项目结构图如下: 在SpringBoot多模块项目打包时遇见如下错误: 1、repackage failed: Unable to find main class -> [Help 1] 解决步骤: (1)删除父pom中的build标签 (2)在web模块的pom中配置,指定启动类,其他模块中不需要配置:...
问题一:repackage failed: Unable to find main class 原因:出现该问题的原因是模块中引入了spring-boot-maven-plugin,打包的时候它去寻找SpringBoot的启动类,但它没有找到,所以打包失败。 解决: 方法一:直接将pom中的spring-boot-maven-plugin相关代码删除 ...