feign
feign copied to clipboard
Feign makes writing java http clients easier
JAXB by default silently ignores errors. Can you add this code to throw an exception if something goes wrong. To SoapEncoder & SoapDecoder ``` unmarshaller.setEventHandler( new ValidationEventHandler() { @Override public...
I use SpringCloud, and the corresponding feign version is 10.12. ```java @GetMapping("/multi") List multiGet(@RequestHeader("Form-Delimiter") @Nullable String delimiter, @RequestParam("keys") String keys); ``` The keys are separated by delimiter. When I pass...
I need to sign the content of body, then add to head. The signKey is different for each different user. So i need to pass signKey to SignRequestInterceptor, the signKey...
Hi, Unable to serialize the exception object RetryableException . Get below exception : "could not serialize : feign.TARGET$HardCodedTarget" Version : feign-core : 11.6 Additional info: Before referring to recent version...
Hi feign team, It would be very useful to be able to exclude some specific headers from the feign http logs. For example we don't want to log `authorisation` header...
I have got the below warning, wondering if anyone could tell me what goes on? WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by feign.form.util.PojoUtil$SetAccessibleAction (file:/C:/Users/tu/.m2/repository/io/github/openfeign/form/feign-form/3.8.0/feign-form-3.8.0.jar)...
Is there any way to replace the feign header's value in log ? I found the way to exclude headers from logs but I want to replace feign header's value...
When I start my SB app with java -jar command then application and feign clients work as expected But actuator restart is enabled in my app and after doing actuator...
No issue on Java 11 Feign core version is feign-core:11.7 Encountered the error when running on Java 8. Is Java 8 not fully supported: https://github.com/OpenFeign/feign#java-version-compatibility ``` feign.FeignException$Forbidden: [403 Forbidden] during...
# Characters Are Not Escaped ! **a example:** _The provider_ ` @PostMapping("find") public String find(@RequestParam(name = "name",required = true) String name, @RequestParam(name = "text",required = true) String text){ return "hello";...