springboot打war包
Posted 672530440
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot打war包相关的知识,希望对你有一定的参考价值。
修改pom为war不是jar. 移除tomcar的jar依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency>
生成war:
把war放入Tomcat的webapps目录,
在tomcat的在bin目录下运行命令 startup.bat 启动项目。关闭项目 shutdown.bat。
会把war解压成文件夹。
访问http:127.0.0.1:8078/war包名字/controller名字。
以上是关于springboot打war包的主要内容,如果未能解决你的问题,请参考以下文章