SpringBoot中maven打包,启动报没有主清单属性
Posted 经典鸡翅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot中maven打包,启动报没有主清单属性相关的知识,希望对你有一定的参考价值。
有时候会出现这种情况,看一下项目的pom中是否有这个插件配置,没有的话需要引入。
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
以上是关于SpringBoot中maven打包,启动报没有主清单属性的主要内容,如果未能解决你的问题,请参考以下文章
idea 打包 springboot 项目,tomcat正常启动但访问报404