当你在Maven项目中运行mvn install命令时,遇到“Unable to find main class”的错误,这通常意味着在执行某个Java程序时,Java运行时环境无法找到主类。这个问题可能由以下几个原因引起: 未定义或拼写错误的主类:检查你的pom.xml文件中的<mainClass>配置,确保主类的完全限定名(包括包名)是正确的。例如:<mainClass>...
当你在使用 Maven 构建项目并尝试运行 mvn install 命令时遇到 “unable to find main class” 的错误,这通常意味着 Maven 无法找到你的项目中的主类(即包含 public static void main(String[] args) 方法的类)。以下是一些可能的解决步骤和检查点,帮助你解决这个问题: 确认pom.xml 中是否正确配置了主类: ...
Maven install异常 1、问题描述 maven install异常:Unable to find mainclass。 maven在对parent工程clean之后,进行 install,Common工程报错Unable to find mainclass,因为Common工程是一些常用工具类,所以没有添加启动类。 1. 2. 3. 2、解决方法 把父工程的 pom.xml 文件中<build>去掉,子工程中哪个需要打包,就在...
1 Execution repackage of goal org.springframework.boot:spring-boot-maven-plugin:2.1.6.RELEASE:repackage failed: Unable to find mainclass-> [Help1] 该错误的原因是api模块的父模块中包含了这个build插件,所有api模块也继承了这个插件,由于这个插件是针对XXXspringbootApplication.class这个入口类的,当api模块中...
是为了解决Unable to find main class的问题,当然,如果写了简单的main函数这几行可以不写~ 其他类或者微服务可以正常配置: <build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build> ...
[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 ...
Spring Boot Maven Plugin打包异常及三种解决方法:Unable to find main class 【背景】spring-boot项目,打包成可执行jar,项目内有两个带有main方法的类并且都使用了@SpringBootApplication注解(或者另一种情形:你有两个main方法并且所在类都没有使用@SpringBootApplication注解),pom.xml如下 ...
maven打包报错failed: Unable to find a single main class from the following candidates [com.zjq.xxxApplication,com.zjq.xxxUtil] 报错意思是:无法从多个类中找到唯一一个启动类。 解决办法 如果当前工程为启动工程,可以在pom文件的打包插件中按照如下配置指定启动的application路径,具体如下: ...
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.5.13.RELEASE:repackage (default) on project axis-login-dao: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.5.13.RELEASE:repackage failed: Unable to find main class -> [Help 1] ...
[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 ...