當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Spring Boot切换其他嵌入式的Servlet容器
生活随笔
收集整理的這篇文章主要介紹了
Spring Boot切换其他嵌入式的Servlet容器
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Spring Boot默認支持:
Tomcat(默認使用)
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId>引入web模塊默認就是使用嵌入式的Tomcat作為Servlet容器; </dependency>切換Jetty
<!-- 引入web模塊 --> <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId><exclusions><exclusion><artifactId>spring-boot-starter-tomcat</artifactId><groupId>org.springframework.boot</groupId></exclusion></exclusions> </dependency><!--引入其他的Servlet容器--> <dependency><artifactId>spring-boot-starter-jetty</artifactId><groupId>org.springframework.boot</groupId> </dependency>切換Undertow
<!-- 引入web模塊 --> <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId><exclusions><exclusion><artifactId>spring-boot-starter-tomcat</artifactId><groupId>org.springframework.boot</groupId></exclusion></exclusions> </dependency><!--引入其他的Servlet容器--> <dependency><artifactId>spring-boot-starter-undertow</artifactId><groupId>org.springframework.boot</groupId> </dependency>學習內容來自尚硅谷
總結
以上是生活随笔為你收集整理的Spring Boot切换其他嵌入式的Servlet容器的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring Boot怎么样注册Serv
- 下一篇: IDEA_Spring Data JPA