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

慕前端25690
浏览 1259回答 1
1回答

慕后端0728355

(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下)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java