<mainClass>com.example.MainClass</mainClass> 编译问题:确保你的项目已经成功编译。你可以通过运行mvn compile命令来编译项目。 缺失的依赖:如果主类依赖于其他库或jar包,确保这些依赖已经正确添加到pom.xml文件中。 类路径问题:检查JAVA_HOME环境变量是否设置正确,以及是否包含正确的JDK版本。另外,检查CLASSPATH环境...
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: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...
[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...
Spring Boot Maven Plugin打包异常及三种解决方法:Unable to find main class 【背景】spring-boot项目,打包成可执行jar,项目内有两个带有main方法的类并且都使用了@SpringBootApplication注解(或者另一种情形:你有两个main方法并且所在类都没有使用@SpringBootApplication注解),pom.xml如下 ...
当你在使用 Maven 打包时遇到 "unable to find main class" 的错误,这通常意味着 Maven 无法在你的项目中定位到包含 main 方法的类。以下是一些可能的解决步骤,你可以按照这些步骤逐一排查问题: 检查pom.xml 文件配置: 确保你的 pom.xml 文件中已经正确配置了 mainClass 属性。这通常在使用 maven-jar-plugin...
public static void main(String[] args) { SpringApplication.run(MysqlApplication.class, args); } } 有时候我们不想要这个启动类,只想把这个Springboot项目当作一个jar包,这个时候,我们把这个main类删除类,同时要包pom上面的配置删除了,这样打包就没有问题了(使用maven原生打包方式)。
今天遇到一个着实让人蛋疼的问题,repackage failed: Unable to find main class 查看次维护项目是一个多模块依赖的项目,通用工具类打包的时候上面的错误,耽误了我十几分钟,后来忽然想到,工具包打包的时候不应该有maven的依赖,去掉pom文件中的这个插件就可以了。
同一问题的原因可能存在多种,这里的方式仅供参考 1、使用jenkins打包基于springboot的多web模块项目时出现Unable to find main class ...
[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 ...