修復zuul跨域配置異常

本文主要介紹一下在zuul進行跨域配置的時候出現的異常。java

異常

The 'Access-Control-Allow-Origin' header contains multiple values '*, *', but only one is allowed

實例git

Access-Control-Allow-Credentials:true
Access-Control-Allow-Credentials:true
Access-Control-Allow-Origin:http://localhost:3000
Access-Control-Allow-Origin:http://localhost:3000
Cache-Control:no-cache, no-store, max-age=0, must-revalidate
Content-Type:application/json;charset=UTF-8
Date:Thu, 11 Aug 2016 14:23:09 GMT
Expires:0
Pragma:no-cache
Transfer-Encoding:chunked
Vary:Origin
Vary:Origin
X-Application-Context:shipping-service:dev:8080
X-Content-Type-Options:nosniff
X-Frame-Options:DENY
X-XSS-Protection:1; mode=block

方案

屢次請求的時候,會把這些header再帶過來,而後請求zuul轉發的接口又在寫入一次,形成重複了,方案就是zuul轉發的時候,過濾掉這些header,好比github

zuul:
  sslHostnameValidationEnabled: false  
  routes:
    info:
      sensitiveHeaders: Access-Control-Allow-Origin,Access-Control-Allow-Methods
      path: /share/**
      url: http://192.168.99.100:9000/

doc

相關文章
相關標籤/搜索