为了账号安全,请及时绑定邮箱和手机立即绑定

在用eclipse开发spring boot时怎么使用eclipse配置的tomcat而不是spring boot内置的tomcat

在用eclipse开发spring boot时怎么使用eclipse配置的tomcat而不是spring boot内置的tomcat

慕前端25690 2018-04-01 22:52:27
查看完整描述

1 回答

?
慕后端0728355

TA贡献5条经验 获得超0个赞

(1). 修改pom.xml将打包方式改成war

      <packaging>war</packaging>
(2). Tomcat的版本支持

    <!-- 打war包时加入此项, 告诉spring-boot tomcat相关jar包用外部的,不要打进去 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
    <scope>provided</scope>
</dependency>

加上这个后,不用spring-boot内置的tomcat库

(3). 修改启动类,并重写初始化方法

  我们需要类似于web.xml的配置方式来启动spring上下文了,在Application类的同级添加一个SpringBootStartApplication类,其代码如下:
/**
* 修改启动类,继承 SpringBootServletInitializer 并重写 configure 方法
*/
public class SpringBootStartApplication extends SpringBootServletInitializer {

    @Override 
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { 
        return application.sources(Application.class); 
    }

}

(4). 这样就可以把spring-boot项目按照平常的web项目一样发布到tomcat下的方式在eclipse中启动(建议发布到root下)

查看完整回答
反对 回复 2018-04-02
  • 1 回答
  • 1 关注
  • 1258 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信