IDEA打包出现Unable to find main class

详细报错信息:

Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.1.1.RELEASE:repackage (default) on project octv-work: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:2.1.1.RELEASE:repackage failed: Unable to find main class

当我们使用IDEA的spring Initializr插件创建一个springboot项目时候,默认没有启动类,打包就时候就好报这个错

解决方案:

方案一:

创建一个启动类

方案二:

有的时候,在多模块项目中,该项目只是一个模块,没有启动类

在pom.xml中加入以下配置:

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <version>2.1.1.RELEASE</version>
    <configuration>
        <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
    </configuration>
    <executions>
        <execution>
            <phase>none</phase>
        </execution>
    </executions>
</plugin>
上一篇:Swagger配置错误 Unable to infer base url. This is common when using dynamic servlet registra


下一篇:鸿蒙编译报错:Unable to find the java component with apiVersion 4.