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...
当我运行测试代码的时候项目打包出错:(由于报的错没有详细记录) 其中有这个提示: [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:...repackage failed: Unable to find mainclass 控制台就两个红色单词: Process terminated; 怎么解决? 还记得之前创建的那个子子目录吗? 要知...
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>...
SpringBoot repackage failed: Unable to find main class Maven 最近在开发中,遇到这样一个问题,一个通用的工具类项目,在进行打包时,出现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...
boot:spring-boot-maven-plugin:2.2.6.RELEASE:repackage failed: Unable to find main class ...
plugin:2.5.5:repackage failed: Unable to find main class 3.其他模块修改类似,springboot-dao模块存放数据库相关处理逻辑,需要加入mybatis依赖 springboot-dao模块pom.xml <?xml version="1.0" encoding="UTF-8"?><projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001...
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.2.2.RELEASE:repackage (repackage) on project dao: Execution repackage of goal org.springframework.boot:spring-boot-maven-plugin:2.2.2.RELEASE:repackage failed: Unable to find main class -> [Help 1] ...
Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.7.RELEASE:repackage (default) on projectdemo-utils: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.7.RELEASE:repackage failed:Unable to find main class-> [Help 1] ...
程序包是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>...