300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > Unable to find a single main class from the following candidates

Unable to find a single main class from the following candidates

时间:2023-04-12 05:45:13

相关推荐

Unable to find a single main class from the following candidates

今天在执行 mvn install的时候,报错:

按提示信息的意思,是我的这些类里面都有main方法导致的。

网上查找资料发现:

POM 文件中添加了“org.springframework.boot:spring-boot-maven-plugin”插件。在添加了该插件之后,当运行“mvn package”进行打包时,会打包成一个可以直接运行的 JAR 文件,使用“Java-jar”命令就可以直接运行。这在很大程度上简化了应用的部署,只需要安装了 JRE 就可以运行。

可以在POM中,指定生成 的是Jar还是War。

<project xmlns="/POM/4.0.0" xmlns:xsi="/2001/XMLSchema-instance"xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.0.xsd"><!-- ... --><packaging>jar</packaging><!-- ... --></project>

你还可以指定要执行的类,如果不指定的话,Spring会找有这个【public static void main(String[] args)】方法的类,当做可执行的类。

如果你想指定的话,可以用下面两个方法:

1,如果你的POM是继承spring-boot-starter-parent的话,只需要下面的指定就行。

<properties><!-- The main class to start by executing java -jar --><start-class>com.mycorp.starter.HelloWorldApplication</start-class></properties>

2,如果你的POM不是继承spring-boot-starter-parent的话,需要下面的指定。

<plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><version>1.3.5.RELEASE</version><configuration><mainClass>${start-class}</mainClass><layout>ZIP</layout></configuration><executions><execution><goals><goal>repackage</goal></goals></execution></executions></plugin>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。