您好,登錄后才能下訂單哦!
Spring Cloud 中怎么配置網關 Gateway,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
路由配置
官網都是用的yml
配置文件配置,與properties
配置文件配置稍有不同,我這里全部使用properties
配置文件配置。
直接使用注冊中心路由配置
#使用服務發現路由 spring.cloud.gateway.discovery.locator.enabled=true #服務路由名小寫 spring.cloud.gateway.discovery.locator.lower-case-service-id=true
指定服務配置
#設置路由id spring.cloud.gateway.routes[0].id=auth-service #設置路由的uri spring.cloud.gateway.routes[0].uri=lb://auth-service #設置路由斷言,代理servicerId為auth-service的/auth/路徑 spring.cloud.gateway.routes[0].predicates[0]= Path=/auth/**
spring.cloud.gateway.routes.predicates:路由斷言,配置時必須得有一項,不一定是Path;
spring.cloud.gateway.routes.uri:配置路由uri,"lb://‘serviceId’"前代表路由的服務,同時也可以是一個url
編碼服務配置
//java項目www.fhadmin.org @Configuration public class RoutesConfiguration { @Bean public RouteLocator customRouteLocator(RouteLocatorBuilder builder) { return builder.routes().route(predicateSpec -> predicateSpec.path("/auth/**").uri("lb://auth-service").id("auth-service") ).build(); } }
關于Spring Cloud 中怎么配置網關 Gateway問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。