springboot更改web容器
2017-08-08 本文已影响60人
二月_春风
springboot web默认使用的是tomcat作为web容器,依赖如下,
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
启动类启动,
看到默认的使用的是tomcat容器,如果我要改成其他容器呢?
修改依赖,在spring-boot-starter-web中排除spring-boot-starter-tomcat依赖,然后加入jetty依赖
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
</dependencies>