赞
踩
前言:在去年年末写了一篇关于war包发布到tomcat的文章--springboot项目打war包部署到本地或centos7中的tomcat_lanren312的博客-CSDN博客,里面提到还有些问题没有解决,时隔3个多月,终于将疑惑全部解开。
<packaging>war</packaging>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <!--去掉SpringBoot内置的tomcat, jar包需要去掉--> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency>
<!-- 这里指定打war包的时不再需要tomcat相关的包,但是本地运行时必须注释掉,否则会报错--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <version>8.0.36</version> <scope>provided</scope> </dependency> <!-- 添加servlet-api的依赖--> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-servlet-api</artifactId> <version>8.5.56</version> <scope>provided</scope> </dependency>
- public class HeroesApplication extends SpringBootServletInitializer{
-
- public static void main(String[] args) {
- SpringApplication.run(HeroesApplication.class, args);
- }
-
- /**
- * 需要把web项目打成war包部署到外部tomcat运行时需要改变启动方式
- *
- */
- @Override
- protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
- return builder.sources(HeroesApplication.class);
- }
方法二:重新写一个类 SpringBootStartApplication,和HeroesApplication平级,HeroesApplication可以不做更改,这个方法更方便,推荐用这个
- public class SpringBootStartApplication extends SpringBootServletInitializer {
- @Override
- protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
- // 注意这里要指向原先用main方法执行的Application启动类
- return builder.sources(HeroesApplication.class);
- }
- }
ps: docBase的路径可以看上图,tomcat启动heroes.war会解析一个heroes的文件夹
<Context docBase="D:/Program Files/apache-tomcat-8.5.56/webapps/heroes" path="" reloadable="true" crossContext="true"/>
写个题外话,如果你是前后分离的项目,server.xml不用改,直接将war包、前端包放到webapps目录下。
1、本地开发登录地址 http:localhost:30000/heroes/login,部署Tomcat后yml文件中配置的port会失效,登录地址应该是 http:localhost:8080/heroes/login;
上篇博客提到登录地址一致是 http:localhost:8080/heroes/heroes/login,是因为没有在server.xml 中配置,登录也有问题,因为多了一个/heroes
2、在配置server.xml时如果不将appBase设置为空,访问地址是 http:localhost:8080/heroes/heroes/login,并且tomcat启动了两次
3、如果docBase地址写错,就会报错
最后,如果对你有帮助就点个赞吧。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。