Springboot项目将jar包修改为war包操作步骤
【摘要】
Springboot项目将jar包修改为war包操作步骤
文章目录
Springboot项目将jar包修改为war包操作步骤1.修改jar为war包形式2.去除Spring Boot内置Tomc...
Springboot项目将jar包修改为war包操作步骤
1.修改jar为war包形式
<project ······>
<modelVersion>4.0.0</modelVersion>
<packaging>war</packaging> //指定为war包
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
······
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
2.去除Spring Boot内置Tomcat
将以下代码从pom.xml中删除
<!-- tomcat 依赖包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
3.增加Tomcat启动插件
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
4.使用maven编译程序
[root@192 TmallDemo-master]# mvn clean install -Dmaven.test.skip=true
[root@192 TmallDemo-master]# ll target/
总用量 447084
drwxr-xr-x. 6 root root 135 10月 17 22:10 classes
drwxr-xr-x. 3 root root 25 10月 17 22:10 generated-sources
drwxr-xr-x. 2 root root 28 10月 17 22:10 maven-archiver
drwxr-xr-x. 3 root root 35 10月 17 22:10 maven-status
drwxr-xr-x. 5 root root 80 10月 17 22:10 TmallDemo-0.0.1-SNAPSHOT
-rw-r--r--. 1 root root 232534650 10月 17 22:11 TmallDemo-0.0.1-SNAPSHOT.war
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
文章来源: jiangxl.blog.csdn.net,作者:Jiangxl~,版权归原作者所有,如需转载,请联系作者。
原文链接:jiangxl.blog.csdn.net/article/details/120817458
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)