当你在使用 Maven 打包时遇到 "unable to find main class" 的错误,这通常意味着 Maven 无法在你的项目中定位到包含 main 方法的类。以下是一些可能的解决步骤,你可以按照这些步骤逐一排查问题: 检查pom.xml 文件配置: 确保你的 pom.xml 文件中已经正确配置了 mainClass 属性。这通常在使用 maven-jar-plugin...
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage (default) on project webapps-api-bid: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage failed: Unable to find a single main class from the...
当你在Maven项目中运行mvn install命令时,遇到“Unable to find main class”的错误,这通常意味着在执行某个Java程序时,Java运行时环境无法找到主类。这个问题可能由以下几个原因引起: 未定义或拼写错误的主类:检查你的pom.xml文件中的<mainClass>配置,确保主类的完全限定名(包括包名)是正确的。例如:<mainClass>...
maven打包提示这个问题。 原因:主项目pomxml文件中,不需要<build>打包的配置,只需要在有入口类的模块pom.xml配置好<build> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>...
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage (default) on project webapps-api-bid: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.3.RELEASE:repackage failed: Unable to find main class ...
springboot 多个maven模块打包异常:Unable to find main class 原因:在父工程中加入了springboot的maven插件,即: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> ...
Spring Boot Maven Plugin打包异常及三种解决方法:Unable to find main class 【背景】spring-boot项目,打包成可执行jar,项目内有两个带有main方法的类并且都使用了@SpringBootApplication注解(或者另一种情形:你有两个main方法并且所在类都没有使用@SpringBootApplication注解),pom.xml如下 ...
一、Maven打包Spring Boot项目报错(repackage failed: Unable to find main class),排除寻找Main方法,一般用于被依赖的公用常量模块,解决方法如下: <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><mainClass>none</mainClass>...
简介:idea中maven打包工具类 repackage failed: Unable to find main class 今天遇到一个着实让人蛋疼的问题,repackage failed: Unable to find main class 查看次维护项目是一个多模块依赖的项目,通用工具类打包的时候上面的错误,耽误了我十几分钟,后来忽然想到,工具包打包的时候不应该有maven的依赖,去掉pom文件中的...
一、Maven打包Spring Boot项目报错(repackage failed: Unable to find main class),排除寻找Main方法,一般用于被依赖的公用常量模块,解决方法如下: <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><mainClass>none</mainClass>...