前言
spring-boot默认使用Tomcat作为内嵌的servlet容器,但是我们可以选择使用其它的容器比如:jetty、Undertow,下面我们试试将tomcat换成jetty
参考项目:https://github.com/bigbeef/cppba-sample
开源地址:https://github.com/bigbeef
个人博客:http://blog.cppba.com
搭建一个简单的spring-boot项目
pom.xml
1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
JettyApplication.java
1 | package com.cppba; |
运行项目
我们可以看到tomcat的提示语句
切换jetty
修改pom依赖
其实很简单,我们只需要修改一下pom的依赖1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16<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>
运行项目
这时控制台打印的时jetty的提示语句