如何告诉Spring Boot哪个主类用于可执行jar?

时间:2014-04-22 10:31:21

标签: java spring maven executable-jar spring-boot

Execution default of goal 
org.springframework.boot:spring-boot-maven-plugin:1.0.1.RELEASE:repackage 
failed: 
Unable to find a single main class from the following candidates

我的项目有多个具有main方法的类。我如何告诉Spring Boot Maven插件它应该用哪个类作为主类?

10 个答案:

答案 0 :(得分:242)

在你的pom中添加你的开始课程:

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

答案 1 :(得分:122)

对于那些使用Gradle(而不是Maven)的人:

springBoot {
    mainClass = "com.example.Main"
}

答案 2 :(得分:66)

如果你不使用spring-boot-starter-parent pom,那么请从Spring documentation

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <version>1.1.3.RELEASE</version>
    <configuration>
        <mainClass>my.package.MyStartClass</mainClass>
        <layout>ZIP</layout>
    </configuration>
    <executions>
        <execution>
            <goals>
                <goal>repackage</goal>
            </goals>
        </execution>
    </executions>
</plugin>

答案 3 :(得分:12)

对于那些使用Gradle(而不是Maven)的人,引用here

  

也可以使用任务的mainClassName属性显式配置主类:

bootJar {
    mainClassName = 'com.example.ExampleApplication'
}
  

或者,可以使用Spring Boot DSL的mainClassName属性在项目范围内配置主类名:

springBoot {
    mainClassName = 'com.example.ExampleApplication'
}

答案 4 :(得分:10)

如果你在pom中使用spring-boot-starter-parent,你只需将以下内容添加到你的pom中:

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

然后做你的mvn包。

请参阅this Spring docs page

这里一个非常重要的方面是提到目录结构必须是src / main / java / nameofyourpackage

答案 5 :(得分:3)

我在pom.xml中尝试了以下代码,它对我有用

<build>
<plugins>
    <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <configuration>
            <mainClass>myPackage.HelloWorld</mainClass> 
        </configuration>
    </plugin>
    <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <fork>true</fork>
            <executable>D:\jdk1.8\bin\javaw.exe</executable>
        </configuration>
    </plugin>
</plugins>

答案 6 :(得分:1)

我已经重命名了我的项目,它仍然在构建路径上找到旧的Application类。我在'build'文件夹中将其删除,一切都很好。

答案 7 :(得分:1)

从Spring Boot 1.5开始,您可以完全忽略pom或build.gradle中容易出错的字符串文字。重新打包工具(通过maven或gradle插件)将为您选择带@SpringBootApplication注释的工具。 (有关详细信息,请参阅此问题:https://github.com/spring-projects/spring-boot/issues/6496

答案 8 :(得分:0)

在未明确指定main-class的情况下,Java 1.9和SpringBoot 1.5.x曾出现此问题。

使用Java 1.8,它可以找到没有显式属性的主类,并且'mvn package'可以正常工作。

答案 9 :(得分:0)

如果您使用的是Grade,则可以应用'application' plugin而不是'java'插件。这样可以在不使用任何Spring Boot Gradle插件任务的情况下,按以下方式指定主类。

plugins {
  id 'org.springframework.boot' version '2.3.3.RELEASE'
  id 'io.spring.dependency-management' version '1.0.10.RELEASE'
  id 'application'
}
application {
  mainClassName = 'com.example.ExampleApplication'
}

一个不错的好处是,可以使用gradle run并通过Gradle自动配置的类路径来运行应用程序。该插件还将应用程序打包为TAR和/或ZIP,包括操作系统特定的启动脚本。