SpringBoot中maven打包,启动报没有主清单属性

前端之家收集整理的这篇文章主要介绍了SpringBoot中maven打包,启动报没有主清单属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

有时候会出现这种情况,看一下项目的pom中是否有这个插件配置,没有的话需要引入。

<build>
  <plugins>
    <plugin>
      <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    </plugin>
  </plugins>
 </build>
原文链接:/springboot/997405.html

猜你在找的Springboot相关文章