插件org.springframework.boot:spring-boot-maven-plugin?

时间:2019-02-07 16:32:42

标签: java spring-boot

执行我的spring-boot代码时,出现如下错误:

无法在项目projectName上执行目标org.springframework.boot:spring-boot-maven-plugin:2.1.2.RELEASE:run(default-cli),无法找到合适的主类,请添加一个'mainClass '属性

我该如何解决?

1 个答案:

答案 0 :(得分:0)

在插件配置中添加主类

<build>
  ...
  <plugins>
    ...
    <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
      <configuration>
        <mainClass>your.class.with.main.Method</mainClass>
      </configuration>
    </plugin>
    ...
  </plugins>
  ...
</build>

来源:https://docs.spring.io/spring-boot/docs/current/maven-plugin/usage.html