SpringBoot を他の組み込みサーブレット コンテナに切り替える方法

王林
リリース: 2023-05-13 22:58:12
転載
1498 人が閲覧しました

他の組み込みサーブレット コンテナ (Jetty および Undertow) に切り替える方法

SpringBoot がデフォルトで使用する組み込みサーブレット コンテナは Tomcat です。

ただし、SpringBoot は他のサーブレット コンテナもサポートしています。デフォルトの Tomcat はそのうちの 1 つです

SpringBoot は Jetty と Undertow もサポートしています

  • Jettyチャットなどの長いリンク アプリケーションに適しています

  • Undertow は、非常に優れた同時実行パフォーマンスを備えた高性能のノンブロッキング サーブレット コンテナですが、jsp

SpringBoot を他の組み込みサーブレット コンテナに切り替える方法 をサポートしていません

#切り替えするには、pom ファイル内の組み込み Tomcat スターターを除外し、他のサーブレット コンテナーのスターターを導入するだけです

spring-boot -starter-web は spring-boot を導入します -starter-tomcat したがって、Tomcat がデフォルトで使用されます

したがって、元の Tomcat を除外して、追加するサーブレット コンテナの依存関係を導入するだけです:

Jetty に切り替えます:

<!-- 引入Web模块 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <exclusions>
        <!-- 排除tomcat容器 -->
        <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>
ログイン後にコピー

SpringBoot を他の組み込みサーブレット コンテナに切り替える方法

Jetty が正常に開始されました

同様に undertow に切り替えます:

<!-- 引入Web模块 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <exclusions>
        <!-- 排除tomcat容器 -->
        <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>
ログイン後にコピー

SpringBoot を他の組み込みサーブレット コンテナに切り替える方法

Undertow が正常に開始されました

SpringBoot Web 開発_埋め込みサーブレット コンテナ

##1. 埋め込みサーブレット コンテナを切り替えます

1.1.SpringBoot でサポートされるサーブレットの種類と切り替え#1) デフォルトでサポートされる Web サーバー: Tomcat、Jrtty、Undertow

2) サーバーの切り替え

<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>
ログイン後にコピー
SpringBoot を他の組み込みサーブレット コンテナに切り替える方法

1.2. 原則

1) SpringBoot アプリケーションが起動すると、現在 Web アプリケーションであることがわかります。 Web シナリオ パッケージ - import tomcat

2) Web アプリケーションは、ioc コンテナの Web バージョンを作成します。ServletWebServerApplicationContext

3) ServletWebServerApplicationContext 開始時に、ServletWebServerFactory (サーブレットの Web サーバー ファクトリ---) を探します。 > サーブレット Web サーバー)

4) SpringBoot にはデフォルトで最下層に多くの Web サーバー ファクトリがあります;

  • TomcatServletWebServerFactory

  • ##JettyServletWebServerFactory
  • UndertowServletWebServerFactory
  • 5) があります。最下層の種類で直接自動構成が行われます。
ServletWebServerFactoryAutoConfiguration は、ServletWebServerFactoryConfiguration をインポートします (構成クラス)

6) ServletWebServerFactoryConfiguration 構成クラスは、動的に基づいて、どの Web サーバー パッケージがシステムにインポートされたかを決定します。 (デフォルトでは、Web-starter が Tomcat パッケージをインポートし、コンテナ内に TomcatServletWebServerFactory

7 があります) TomcatServletWebServerFactory は Tomcat サーバーを作成して起動します; TomcatWebServer のコンストラクターには初期化メソッド initialize--- があります。 this.tomcat.start() ;

8) 組み込みサーバーとは、コードを手動で呼び出してサーバーを起動することを意味します (tomcat コア jar パッケージが存在します)

2. カスタマイズされたサーブレット コンテナ

2.1. 設定ファイルを変更します

#application.properties 設定ファイルを設定してサーブレット コンテナをカスタマイズします

#修改servlet容器
server.port=8000
#server.undertow.accesslog.dir=/tmp
ログイン後にコピー
#2.2、WebServerFactoryCustomizer

## を実装します

#xxxxx

Customizer

: カスタマイザー、xxx

サーブレット コンテナの応答ポート番号を変更するデフォルト ルールを変更できます。 WebServerFactoryCustomizer

import org.springframework.boot.web.server.WebServerFactoryCustomizer;
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
import org.springframework.stereotype.Component;
 
@Component
public class CustomizationBean implements WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> {
 
    @Override
    public void customize(ConfigurableServletWebServerFactory server) {
        server.setPort(9000);
    }
}
ログイン後にコピー

2.3、ConfigurableServletWebServerFactory

ConfigurableServletWebServerFactory

public interface ConfigurableWebServerFactory extends WebServerFactory, ErrorPageRegistry {
    void setPort(int port); 
    void setAddress(InetAddress address); 
    void setErrorPages(Set<? extends ErrorPage> errorPages); 
    void setSsl(Ssl ssl); 
    void setSslStoreProvider(SslStoreProvider sslStoreProvider); 
    void setHttp2(Http2 http2); 
    void setCompression(Compression compression); 
    void setServerHeader(String serverHeader); 
    default void setShutdown(Shutdown shutdown) {
    }
}
ログイン後にコピー
# のインターフェイス実装クラスを直接カスタマイズします。 ##ConfigurableServletWebServerFactory Interface 実装クラス (フレームワークのデフォルト実装クラス):

ConfigurableServletWebServerFactory の実装クラスをカスタマイズすることにより インターフェイスでは、サーブレット コンテナをカスタマイズできます

以上がSpringBoot を他の組み込みサーブレット コンテナに切り替える方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:yisu.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート