springboot 潜入式web容器
普通servlet 容器
1、tomcat
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency>
2、jetty
<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> <scope>provided</scope> </dependency>
3、undertow
<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-undertow</artifactId> <scope>provided</scope> </dependency>
相关推荐
lantingyue 2020-07-30
丽丽 2020-10-30
一青年 2020-08-13
yuanye0 2020-06-21
akcsdno 2020-06-15
Julywhj 2020-06-09
MrFuWen 2020-06-06
neweastsun 2020-03-30
kong000dao0 2020-03-07
JayFighting 2020-02-24
mokingone 2012-09-03
六天 2013-05-13
数据库工具开发 2013-05-10
书弋江山 2020-01-14
SoarFly00 2020-01-14
akcsdno 2020-01-04
htofly 2020-01-04
yuanye0 2020-01-04
CoderBoy 2019-12-30