摘要:
``` public class Test { public static void main(String[] args) { Map map = Collections.singletonMap("a", "abc"); map.put("a", "bbb"); System.out.println(map); } } ``` ``` Exception in thread "main" ja 阅读全文
摘要:
feign调用有时候会需要在请求头中传入特殊属性,feign提供了这个扩展接口 demo如下 接口说明: Zero or more RequestInterceptors may be configured for purposes such as adding headers to all req 阅读全文