SpringCloud Feign 要取到 header
2020-08-28 本文已影响0人
阿炼_b282
SpringCloud Feign 要取到 header,只能使用 feign.Response 接才能得到 header 里面的值
Optional<String> authorization = response.headers().get("Authorization").stream().findFirst();
SpringCloud Feign 要取到 header,只能使用 feign.Response 接才能得到 header 里面的值
Optional<String> authorization = response.headers().get("Authorization").stream().findFirst();