App下載

詞條

大約有 900 項(xiàng)符合查詢(xún)結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0029秒)

331.Spring Cloud 將交換標(biāo)記為已路由

網(wǎng)關(guān)路由ServerWebExchange后,它將通過(guò)在交換屬性中添加gatewayAlreadyRouted將該交換標(biāo)記為“已路由”。將請(qǐng)求標(biāo)記為已路由后,其他路由篩選器將不會(huì)再次路由請(qǐng)求,實(shí)質(zhì)上會(huì)跳過(guò)該篩選器。您可以使用多種便捷方法將交換標(biāo)記為...

http://www.o2fo.com/scchinese/spring-cloud-marks-exchanges-as-routed.html

332.Spring Cloud 轉(zhuǎn)發(fā)的標(biāo)題過(guò)濾器

Forwarded標(biāo)頭過(guò)濾器創(chuàng)建一個(gè)Forwarded標(biāo)頭,以發(fā)送到下游服務(wù)。它將當(dāng)前請(qǐng)求的Host標(biāo)頭,方案和端口添加到任何現(xiàn)有的Forwarded標(biāo)頭中。

http://www.o2fo.com/scchinese/title-filter-for-spring-cloud-forwarding.html

333.Spring Cloud Fluent Java Routes API

為了在Java中進(jìn)行簡(jiǎn)單的配置,在RouteLocatorBuilder bean中定義了一個(gè)流暢的API。 GatewaySampleApplication.java。 // static imports from GatewayFilters and RoutePredicates @Bean public RouteLocator customRouteLocator(RouteLocatorBuilder builder, ThrottleGatewayFilterFactory thro...

http://www.o2fo.com/scchinese/spring-cloud-fluent-java-routes-api.html

334.Spring Cloud 全局過(guò)濾器

...alfilters發(fā)出GET請(qǐng)求。 產(chǎn)生的響應(yīng)類(lèi)似于以下內(nèi)容: { "org.springframework.cloud.gateway.filter.LoadBalancerClientFilter@77856cc5": 10100, "org.springframework.cloud.gateway.filter.RouteToRequestUrlFilter@4f6fd101": 10000, "org.springframework.cloud.gateway.filter.NettyWriteResponseF...

http://www.o2fo.com/scchinese/global-filter.html

335.Spring Cloud 路由過(guò)濾器

要檢索應(yīng)用于路由的GatewayFilter工廠(chǎng),請(qǐng)向/actuator/gateway/routefilters發(fā)出GET請(qǐng)求。 產(chǎn)生的響應(yīng)類(lèi)似于以下內(nèi)容: { "[AddRequestHeaderGatewayFilterFactory@570ed9c configClass = AbstractNameValueGatewayFilterFactory.NameValueConfig]": null, "[SecureHeadersGatewayFilterFa...

http://www.o2fo.com/scchinese/spring-cloud-routing-filter.html

336.Spring Cloud 刷新路由緩存

要清除路由緩存,請(qǐng)向/actuator/gateway/refresh發(fā)出POST請(qǐng)求。該請(qǐng)求返回200,但沒(méi)有響應(yīng)主體。

http://www.o2fo.com/scchinese/spring-cloud-refreshes-routing-cache.html

337.Spring Cloud 檢索網(wǎng)關(guān)中定義的路由

...容: [{ "route_id": "first_route", "route_object": { "predicate": "org.springframework.cloud.gateway.handler.predicate.PathRoutePredicateFactory$$Lambda$432/1736826640@1e9d7e7d", "filters": [ "OrderedGatewayFilter{delegate=org.springframework.cloud.gateway.filter.factory.PreserveHostHeaderGatewayF...

http://www.o2fo.com/scchinese/spring-cloud-retrieves-routes-defined-in-gateways.html

338.Spring Cloud 檢索有關(guān)特定路線(xiàn)的信息

要檢索有關(guān)一條路線(xiàn)的信息,請(qǐng)向/actuator/gateway/routes/{id}發(fā)送一個(gè)GET請(qǐng)求(例如/actuator/gateway/routes/first_route)。產(chǎn)生的響應(yīng)類(lèi)似于以下內(nèi)容: { "id": "first_route", "predicates": [{ "name": "Path", "args": {"_genkey_0":"/first"} }], "filters": [], "uri": "...

http://www.o2fo.com/scchinese/spring-cloud-retrieves-information-about-specific-routes.html

339.Spring Cloud 創(chuàng)建和刪除特定路線(xiàn)

要?jiǎng)?chuàng)建路由,請(qǐng)使用指定路由字段的JSON正文向/gateway/routes/{id_route_to_create}發(fā)出POST請(qǐng)求(請(qǐng)參見(jiàn)上一小節(jié))。要?jiǎng)h除路由,請(qǐng)向/gateway/routes/{id_route_to_delete}發(fā)出DELETE請(qǐng)求。

http://www.o2fo.com/scchinese/spring-cloud-creates-and-deletes-specific-routes.html

340.Spring Cloud 編寫(xiě)自定義路由謂詞工廠(chǎng)

為了編寫(xiě)路由謂詞,您將需要實(shí)現(xiàn)RoutePredicateFactory。您可以擴(kuò)展名為AbstractRoutePredicateFactory的抽象類(lèi)。 MyRoutePredicateFactory.java。 public class MyRoutePredicateFactory extends AbstractRoutePredicateFactory<HeaderRoutePredicateFactory.Config> { public MyRout...

http://www.o2fo.com/scchinese/writing-custom-routing-predicate-factories-in-spring-cloud.html

抱歉,暫時(shí)沒(méi)有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒(méi)有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

331.Spring Cloud 將交換標(biāo)記為已路由

網(wǎng)關(guān)路由ServerWebExchange后,它將通過(guò)在交換屬性中添加gatewayAlreadyRouted將該交換標(biāo)記為“已路由”。將請(qǐng)求標(biāo)記為已路由后,其他路由篩選器將不會(huì)再次路由請(qǐng)求,實(shí)質(zhì)上會(huì)跳過(guò)該篩選器。您可以使用多種便捷方法將交換標(biāo)記為...

http://www.o2fo.com/scchinese/spring-cloud-marks-exchanges-as-routed.html

332.Spring Cloud 轉(zhuǎn)發(fā)的標(biāo)題過(guò)濾器

Forwarded標(biāo)頭過(guò)濾器創(chuàng)建一個(gè)Forwarded標(biāo)頭,以發(fā)送到下游服務(wù)。它將當(dāng)前請(qǐng)求的Host標(biāo)頭,方案和端口添加到任何現(xiàn)有的Forwarded標(biāo)頭中。

http://www.o2fo.com/scchinese/title-filter-for-spring-cloud-forwarding.html

333.Spring Cloud Fluent Java Routes API

為了在Java中進(jìn)行簡(jiǎn)單的配置,在RouteLocatorBuilder bean中定義了一個(gè)流暢的API。 GatewaySampleApplication.java。 // static imports from GatewayFilters and RoutePredicates @Bean public RouteLocator customRouteLocator(RouteLocatorBuilder builder, ThrottleGatewayFilterFactory thro...

http://www.o2fo.com/scchinese/spring-cloud-fluent-java-routes-api.html

334.Spring Cloud 全局過(guò)濾器

...alfilters發(fā)出GET請(qǐng)求。 產(chǎn)生的響應(yīng)類(lèi)似于以下內(nèi)容: { "org.springframework.cloud.gateway.filter.LoadBalancerClientFilter@77856cc5": 10100, "org.springframework.cloud.gateway.filter.RouteToRequestUrlFilter@4f6fd101": 10000, "org.springframework.cloud.gateway.filter.NettyWriteResponseF...

http://www.o2fo.com/scchinese/global-filter.html

335.Spring Cloud 路由過(guò)濾器

要檢索應(yīng)用于路由的GatewayFilter工廠(chǎng),請(qǐng)向/actuator/gateway/routefilters發(fā)出GET請(qǐng)求。 產(chǎn)生的響應(yīng)類(lèi)似于以下內(nèi)容: { "[AddRequestHeaderGatewayFilterFactory@570ed9c configClass = AbstractNameValueGatewayFilterFactory.NameValueConfig]": null, "[SecureHeadersGatewayFilterFa...

http://www.o2fo.com/scchinese/spring-cloud-routing-filter.html

336.Spring Cloud 刷新路由緩存

要清除路由緩存,請(qǐng)向/actuator/gateway/refresh發(fā)出POST請(qǐng)求。該請(qǐng)求返回200,但沒(méi)有響應(yīng)主體。

http://www.o2fo.com/scchinese/spring-cloud-refreshes-routing-cache.html

337.Spring Cloud 檢索網(wǎng)關(guān)中定義的路由

...容: [{ "route_id": "first_route", "route_object": { "predicate": "org.springframework.cloud.gateway.handler.predicate.PathRoutePredicateFactory$$Lambda$432/1736826640@1e9d7e7d", "filters": [ "OrderedGatewayFilter{delegate=org.springframework.cloud.gateway.filter.factory.PreserveHostHeaderGatewayF...

http://www.o2fo.com/scchinese/spring-cloud-retrieves-routes-defined-in-gateways.html

338.Spring Cloud 檢索有關(guān)特定路線(xiàn)的信息

要檢索有關(guān)一條路線(xiàn)的信息,請(qǐng)向/actuator/gateway/routes/{id}發(fā)送一個(gè)GET請(qǐng)求(例如/actuator/gateway/routes/first_route)。產(chǎn)生的響應(yīng)類(lèi)似于以下內(nèi)容: { "id": "first_route", "predicates": [{ "name": "Path", "args": {"_genkey_0":"/first"} }], "filters": [], "uri": "...

http://www.o2fo.com/scchinese/spring-cloud-retrieves-information-about-specific-routes.html

339.Spring Cloud 創(chuàng)建和刪除特定路線(xiàn)

要?jiǎng)?chuàng)建路由,請(qǐng)使用指定路由字段的JSON正文向/gateway/routes/{id_route_to_create}發(fā)出POST請(qǐng)求(請(qǐng)參見(jiàn)上一小節(jié))。要?jiǎng)h除路由,請(qǐng)向/gateway/routes/{id_route_to_delete}發(fā)出DELETE請(qǐng)求。

http://www.o2fo.com/scchinese/spring-cloud-creates-and-deletes-specific-routes.html

340.Spring Cloud 編寫(xiě)自定義路由謂詞工廠(chǎng)

為了編寫(xiě)路由謂詞,您將需要實(shí)現(xiàn)RoutePredicateFactory。您可以擴(kuò)展名為AbstractRoutePredicateFactory的抽象類(lèi)。 MyRoutePredicateFactory.java。 public class MyRoutePredicateFactory extends AbstractRoutePredicateFactory<HeaderRoutePredicateFactory.Config> { public MyRout...

http://www.o2fo.com/scchinese/writing-custom-routing-predicate-factories-in-spring-cloud.html

抱歉,暫時(shí)沒(méi)有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門(mén)課程