Spring boot切换Servlet容器

切换Servlet容器

Spring boot默认配置Tomcat作为Servlet容器
引入web模块,默认使用嵌入式的Tomcat
可以切换Jetty、Undertow

默认配置
Pom文件,查看依赖关系

默认使用Tomcat
因为,Web引入了Tomcat的启动器

切换Jetty

Pom文件,排除Tomcat启动器依赖
在依赖关系,右键可以排除依赖


<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-webartifactId>
    <exclusions>
        <exclusion>
            <artifactId>spring-boot-starter-tomcatartifactId>
            <groupId>org.springframework.bootgroupId>
        exclusion>
    exclusions>
dependency>

引入Jetty启动器


<dependency>
    <artifactId>spring-boot-starter-jettyartifactId>
    <groupId>org.springframework.bootgroupId>
dependency>

切换undertow

引入undertow启动器


<dependency>
    <artifactId>spring-boot-starter-undertowartifactId>
    <groupId>org.springframework.bootgroupId>
dependency>

你可能感兴趣的:(————Spring,Boot)