springboot 之 使用jetty web容器

springboot 中默认的web容器是tomcat。

在maven 的pom 文件中加入如下依赖,便可使用tomcat 容器。

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

如果想使用 jetty 作为 web容器,需要2步操作:

1.排除默认的tomcat 容器

        <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>

2.加入 jetty 的 starter 依赖

        <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
上一篇:at


下一篇:转载:Cellebrite携两大移动数据服务强势来华