springboot 运行jar文件报 “XXX中没有主清单属性”

springboot 使用maven打jar, 执行Java -jar XXX.jar 提示 “XXX中没有主清单属性”, 如图

 pom.xml中需要添加以下配置:

        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>


猜你喜欢

转载自blog.csdn.net/changerzhuo_319/article/details/79348766