1. ホーム
  2. java

[解決済み】実行可能なjarに使用するメインクラスをSpring Bootに伝えるにはどうすればよいですか?

2022-04-13 10:42:44

質問

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 プラグインに、どのクラスをメインクラスとして使用するかを指示するにはどうすればよいですか?

どのように解決するのですか?

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>