springboot中各種容器切換
阿新 • • 發佈:2019-01-13
容器有:
Tomcat、Jetty、Undertow、(各有特色,tomcat是springboot專案中預設自帶的配置)
要想切換其他容器,先排除tomcat容器
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> //進入到pmo.xml檢視中排除掉tomcat就會自動生成下面的排除語句 <exclusions> <exclusion> <artifactId>spring-boot-starter-tomcat</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency>
引入jerry
或者引入undertow