欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Spring Cloud 2023 新特性支持同步網(wǎng)關(guān)

 更新時(shí)間:2023年10月12日 10:53:12   作者:冷冷  
這篇文章主要為大家介紹了Spring Cloud 2023 新特性支持同步網(wǎng)關(guān)講解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪

網(wǎng)關(guān)不支持傳統(tǒng) Servlet 容器

Spring Cloud Gateway 需要運(yùn)行在提供的 Netty 運(yùn)行時(shí)。它不能在傳統(tǒng)的 Servlet 容器中工作,也不能在構(gòu)建為 WAR 時(shí)工作。WebFlux 使用了異步非阻塞的編程模型,相較于傳統(tǒng)的 MVC Servlet 需要理解和適應(yīng)新的編程范式和響應(yīng)式編程概念,因此學(xué)習(xí)曲線可能較陡峭。

如果在 spring-cloud-gateway 引入了 tomcat 等傳統(tǒng)容器會(huì)拋出如下異常:

14 Caused by: org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
 15     at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:124) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
 16     at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.<init>(TomcatWebServer.java:86) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
 17     at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:414) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
 18     at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:178) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
 19     at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:179) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
 20     at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:152) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
 21     ... 8 common frames omitted

MVC Servlet 支持

在 SpringCloud 2023 版本(Spring Cloud Gateway 4.1)版本,官方提供了對 MVC Servlet 的支持,可以使用 tomcat 等容器替代 netty ,使用同步的 Servlet Filter 代替復(fù)雜的事件流的異步編程風(fēng)格。

快速開始

  • springboot 3.2
  • spring clouod 2023
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-gateway-mvc</artifactId>
</dependency>

配置轉(zhuǎn)發(fā)規(guī)則

所有客戶端請求 127.0.0.1:8080 轉(zhuǎn)發(fā)至 pig4cloud.com

spring:
  cloud:
    gateway:
      mvc:
        routes:
          - id: pig
            uri: https://pig4cloud.com
            predicates:
              - Path=/

注意:如果使用 gateway-mvc ,如有配置規(guī)則需要增加 mvc 這個(gè)層級的配置不然無效

如何自定義網(wǎng)關(guān) filter

打開 Spring Cloud Gateway 的官網(wǎng),發(fā)現(xiàn)針對 MVC 支持的部分沒有提供過多的參考資料。不過按筆者看來完全不需要參考其他資料,只要按照 Spring MVC 項(xiàng)目中如何編寫 Filter 的方法,就可以實(shí)現(xiàn) Gateway 的開發(fā)。

注意指定自定義 Filter 的順序,Spring Cloud Gateway Filter 執(zhí)行順序與 WebFlux Filter 保持一致。

總結(jié)

Spring Cloud Gateway 對于同步 MVC 的支持,早在社區(qū)中就已提出(畢竟最早使用的都是 Zuul 1.x 切換過去,原本就是 MVC 的實(shí)現(xiàn))。隨著 Java 21 正式發(fā)布,虛擬線程的出現(xiàn)無形中對同步 MVC 提供了性能加持。官方在適配 Java 21 后,會(huì)正式發(fā)布相關(guān)的版本,Spring Cloud Gateway 的 MVC 版本將簡化原有的網(wǎng)關(guān)邏輯開發(fā)難度,極大地豐富了網(wǎng)關(guān)應(yīng)用。

PIG 微服務(wù)已支持 SpringBoot3.2 、SpringCloud 2023

以上就是Spring Cloud 2023 新特性支持同步網(wǎng)關(guān)的詳細(xì)內(nèi)容,更多關(guān)于Spring Cloud同步網(wǎng)關(guān)的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • 深入同步訪問共享的可變數(shù)據(jù)分析

    深入同步訪問共享的可變數(shù)據(jù)分析

    本篇文章是對同步訪問共享的可變數(shù)據(jù)進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • 關(guān)于springboot配置文件密文解密方式

    關(guān)于springboot配置文件密文解密方式

    這篇文章主要介紹了關(guān)于springboot配置文件密文解密方式,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-08-08
  • IDEA搭建配置Java?Web項(xiàng)目的詳細(xì)步驟

    IDEA搭建配置Java?Web項(xiàng)目的詳細(xì)步驟

    這篇文章詳細(xì)介紹了如何使用IDEA創(chuàng)建和配置JavaWeb項(xiàng)目,包括項(xiàng)目結(jié)構(gòu)設(shè)置、WEB-INF目錄和jsp文件的創(chuàng)建,以及Tomcat的配置,是Java初學(xué)者的實(shí)用指南,需要的朋友可以參考下
    2024-10-10
  • 解決表單post,get到springMVC后臺(tái)亂碼的問題

    解決表單post,get到springMVC后臺(tái)亂碼的問題

    下面小編就為大家分享一篇解決表單post,get到springMVC后臺(tái)亂碼的問題,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-01-01
  • 最新評論