iT邦幫忙

2023 iThome 鐵人賽

DAY 23
0
Software Development

我在 Spring Boot 3 裡面挖呀挖呀挖系列 第 23

Day22 - Embedded Web Servers

  • 分享至 

  • xImage
  •  

Day22 - Embedded Web Servers

前言

在Java Web的世界裡有好多的Application Server可供選擇,例如WebSphere、Weblogic、Jboss、Tomcat EE、Paraya等等,也有只有Servlet Container的Web Server可供選擇,例如Tomcat、Undertow、Jetty等
。Spring Boot的一大特色之一就是自帶Web Server,提供Tomcat、Undertow、Jetty可供選擇,今日我們來談談Embedded Web Server吧

專案建立

https://ithelp.ithome.com.tw/upload/images/20231008/20128084zD4BFytAj5.png
https://ithelp.ithome.com.tw/upload/images/20231008/20128084zhvt9wGyQR.png

Embedded Web Servers

ServletWebServerFactoryAutoConfiguration

從這個類別自動裝配WebServer
https://ithelp.ithome.com.tw/upload/images/20231008/201280841HOfQA6hza.png

  • @EnableConfigurationProperties
    設定檔設定綁定server
  • @Import
    引入三個embeded web server,放入三個ServletWebServerFactory
  • ServletWebServerFactory中有getWebServer方法提供取得WebServer
    https://ithelp.ithome.com.tw/upload/images/20231008/20128084jFDV6Fc6zj.png
  • ServletWebServerApplicationContext ioc容器啟動時會調用創建調用WebServer

Use Another Web Server

<properties>
    <servlet-api.version>3.1.0</servlet-api.version>
</properties>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <exclusions>
        <!-- Exclude the Tomcat dependency -->
        <exclusion>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<!-- Use Undertow instead -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-undertow</artifactId>
</dependency>

https://ithelp.ithome.com.tw/upload/images/20231008/20128084qOFnygOCcm.png

Change the HTTP Port

server:
  port: 9999

https://ithelp.ithome.com.tw/upload/images/20231008/20128084U9zjmHj7v9.png

Reference


上一篇
Day21 - Error Handling
下一篇
Day23 - Switch off the Default MVC Configuration
系列文
我在 Spring Boot 3 裡面挖呀挖呀挖31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言