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插件应将其用作主类?
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插件应将其用作主类?
Answers:
在pom中添加您的入门班:
<properties>
<!-- The main class to start by executing java -jar -->
<start-class>com.mycorp.starter.HelloWorldApplication</start-class>
</properties>
要么
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.mycorp.starter.HelloWorldApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
mvn clean package -Dstart-class=com.foo.Application
如果要动态指定使用哪个主类
mvn spring-boot:run -Dstart-class=com.foo.Application
。仅当您尚未在pom的插件中指定mainClass时,此方法才有效
对于使用Gradle(而不是Maven)的用户:
springBoot {
mainClass = "com.example.Main"
}
Could not set unknown property 'mainClass' for object of type org.springframework.boot.gradle.dsl.SpringBootExtension
。
如果您不使用spring-boot-starter-parent pom,请从Spring文档中获取:
<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>
如果您在pom中使用spring-boot-starter-parent,则只需将以下内容添加到pom中:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
然后做你的MVN包。
请参阅此Spring文档页面。
这里要提到的一个非常重要的方面是目录结构必须是src / main / java / nameofyourpackage
我在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>
从Spring Boot 1.5开始,您可以完全忽略pom或build.gradle中易于出错的字符串文字。重新打包工具(通过maven或gradle插件)将为您选择带有注释的@SpringBootApplication
工具。(请参阅此问题以获取详细信息:https : //github.com/spring-projects/spring-boot/issues/6496)