有勇气的牛排博客

SpringBoot (十一) 项目打包发布

有勇气的牛排 618 Java 2023-02-25 22:35:13

文章目录

Maven配置

<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> <configuration> <mainClass>com.couragesteak.App</mainClass> <excludes> <exclude> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclude> <exclude> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </exclude> </excludes> </configuration> </plugin> </plugins> </build>

打包运行

打包

mvn clean package

运行

java -jar 包名.jar

留言

专栏
文章
加入群聊