java -jar 启动springboot项目 显示“XXXXX.jar中没有主清单属性的解决办法”

需要在pom文件里加入插件配置,因为不加springboot的插件配置,无法将springboot打包进去启动。

没有这个配置的packaging 之去找主函数。

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-maven-pluginartifactId>
        plugin>
    plugins>
build>

你可能感兴趣的:(采坑记录)