在pom文件中添加以下内容 重新打包即可
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<includeSystemScope>true</includeSystemScope>
<mainClass>${groupId}.${artifactId}.MallApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
本文详细介绍了如何在Spring Boot项目的pom.xml中添加配置,以便于执行repackage任务,确保应用的正确打包。主要涉及<spring-boot-maven-plugin>的使用和配置,包括mainClass的选择。
3548

被折叠的 条评论
为什么被折叠?



