SpringBoot启动报错Unable to find a suitable main class

2023-07-24 21:31:02 浏览数 (1)

在启动一个spring-boot多模块项目时始终报错:Unable to find a suitable main class, please add a 'mainClass' property

试了如增加mainClass配置无效,最终定位是因为父pom里面存在:

代码语言:javascript复制
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.1.RELEASE</version>
</parent>

而spring-boot-starter-parent中包含spring-boot-maven-plugin,而父模块并没有主类入口所以需要跳过:

代码语言:javascript复制
<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <skip>true</skip>
    </configuration>
</plugin>

需要注意的是子模块如果有引入spring-boot-maven-plugin,需要将skip设置为false,否则会出现全部模块编译成功,但是没有服务启动的情况。

代码语言:javascript复制
<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <skip>false</skip>
    </configuration>
</plugin>

0 人点赞