溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SpringCloud中怎么使用zuul網(wǎng)關(guān)組件

發(fā)布時(shí)間:2021-06-16 14:30:08 來(lái)源:億速云 閱讀:126 作者:Leah 欄目:編程語(yǔ)言

這篇文章給大家介紹SpringCloud中怎么使用zuul網(wǎng)關(guān)組件,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

1.引入如下依賴

<dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>

2.啟動(dòng)類添加如下注解 @EnableZuulProxy

@SpringBootApplication
@EnableZuulProxy
public class ApiZuulApplication {
  public static void main(String[] args) {
    SpringApplication.run(ApiZuulApplication.class, args);
  }}

原先訪問(wèn)商品服務(wù)如下:

SpringCloud中怎么使用zuul網(wǎng)關(guān)組件

通過(guò)網(wǎng)關(guān)訪問(wèn):將訪問(wèn)地址改為網(wǎng)關(guān)地址,并添加商品服務(wù)的服務(wù)名稱如下:

SpringCloud中怎么使用zuul網(wǎng)關(guān)組件

即完成統(tǒng)一完成由網(wǎng)關(guān)進(jìn)行發(fā)送

同時(shí)可以在啟動(dòng)類中添加自定義路由映射

#/order-service/api/v1/order/save?user_id=2&product_id=1
#自定義路由映射
zuul:
 routes:
  order-service: /apizuul/order/**
  product-service: /apizuul/product/**
 #統(tǒng)一入口為上面的配置,其他入口忽略
 ignored-patterns: /*-service/**
 #處理http請(qǐng)求頭為空的問(wèn)題
 sensitive-headers:

這樣就可以做到不向用戶暴露真實(shí)的請(qǐng)求路徑

SpringCloud中怎么使用zuul網(wǎng)關(guān)組件

zull默認(rèn)會(huì)清除一些請(qǐng)求頭信息:比如,cookie,解決方法---> 在配置文件中添加配置

 #處理http請(qǐng)求頭為空的問(wèn)題
 sensitive-headers:

關(guān)于SpringCloud中怎么使用zuul網(wǎng)關(guān)組件就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI