zuul轉發後服務取不到請求路徑的解決

zuul轉發後服務取不到請求路徑

問題

希望通過獲取不同的路徑中的項目名,動態設置數據源,但是經過zuul網關後,在後面的服務中獲取不到請求路徑。

解決

通過Header:x-forwarded-prefix獲取

測試代碼:

    @GetMapping("/a")
    public String a(HttpServletRequest request) {
        StringBuilder result = new StringBuilder();
        result.append("getMethod:" + request.getMethod() + "\n\r");
        result.append("getRequestURL:" + request.getRequestURL() + "\n\r");
        result.append("getServletPath:" + request.getServletPath() + "\n\r");
        result.append("getContextPath:" + request.getContextPath() + "\n\r");
        result.append("getPathInfo:" + request.getPathInfo() + "\n\r");
        result.append("---------------------------------------------------" + "\n\r");
        Enumeration<String> es = request.getHeaderNames();
        while (es.hasMoreElements()) {
            result.append(es.nextElement() + ":" + request.getHeader(es.nextElement()) + "\n\r");
        }
        return result.toString();
    }

返回結果:

這裡寫圖片描述

路徑中標紅的地方,和x-forwarded-prefix頭部裡的內容是一樣的,所以使用request.getHeader(‘x-forwarded-prefix’)就可以獲取到當前訪問的項目,然後做區分。

思考

推測是因為zuul轉發請求的時候用的代理,本地相當於直接訪問http://localhost:9070/a,所以就獲取不到最開始輸入的路徑,而x-forwarded-prefix這個頭部是用來記錄請求最初從瀏覽器發出時的訪問地址

zuul 地址轉發問題

最近在學習spring cloud,使用zuul過程中發現地址並沒轉發成功,頁面一直報錯404.

使用的Spring cloud版本為最新版Greenwich

zuul中配置文件內容是

server:
  port: 8180
spring:
  application:
    name: zuul-test
zuul:
  routes:
    hello:
      path: /hello/**
      url: http://localhost:9180/

期望的是當web請求http://localhost:8180/hello?name=world 時能跳轉到http://localhost:9180/hello?neam=world 打印出”hello world”,然而事實上並沒有,出錯,頁面提示404.

開始以為是Spring cloud版本太高,就把純潔的微笑博客中的demo下載下來測試,發現依然如此。

懷疑zuul的請求是直接跳轉到http://localhost:9180/ 但是沒有加上上下文”hello”

所以將配置更改如下:

server:
  port: 8180
spring:
  application:
    name: zuul-test
zuul:
  routes:
    hello:
      path: /hello/**
      url: http://localhost:9180/hello

請求跳轉成功。

畢竟是自己的猜測,還是需要代碼支持,所以斷點,調試源碼進入查看.

在org.springframework.cloud.netflix.zuul.filters.route.SimpleHostRoutingFilter#run方法中通過

String uri = this.helper.buildZuulRequestURI(request);

解析出uri=“”,然後通過當前類中的forward方法組織請求參數並轉發.

源碼如下

重要是圖中紅框部分,如果你的轉發地址沒有帶上上下文,host.getPath()獲取的值將為””,與之前獲取的uri拼接後為””.

通過323行

buildHttpRequest(verb, uri, entity, headers, params,request);

獲取的httpRequest中的uri將會是?name=world,請求轉發地址變成http://localhost:9180/?name=world,當然會404瞭。

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: