feign-form icon indicating copy to clipboard operation
feign-form copied to clipboard

Open Feign form encoder

Results 52 feign-form issues
Sort by recently updated
recently updated
newest added

Currently it's not possible to encode `Enum` value in form data. The value ends up using `PojoWriter`, which just skips it, when it should be using the delegate writer or...

``` public static class Temp { private String name; private int age; private List list; private Nested nested; private Map map; public Temp(){} public Temp(String name, int age, List list,...

While trying to use FormEncoder with JacksonEncoder encoder faced with ignoring 2nd one. Wrapping JAX-RS with Feign ``` Feign.builder() .encoder(new FormEncoder(new JacksonEncoder())) .decoder(new JacksonDecoder()) .contract(new JAXRSContract()) .logger(new FeignSlf4jMultilineLogger(ApiClient.class)) .logLevel(Logger.Level.FULL) .target(ApiClient.class,...

It will be useful if feign-form can use QueryMap Encoder from client configuration to convert POJO to map. Converting POJO to map is done in diferent way by standard call...

I want to use GsonHttpMessageConverter ,but default not ,so i need to override feignDecoder and modify ObjectFactory ,but ObjectFactory its list is unModifyList; so how can i add GsonHttpMessageConverter to...

when I refactor a project running on prouduct environment, I have to reserve some structual like it used to be. When I use feign, I found it not supported multiple...

Added a `ManyFormDatasWriter` to support the use of a list of FormData closes #91

It's currently not possible to use a list of FormData like we can use a list of files. It should be possible to add the support for this.

Does the jmx metrics support in open-feign been implemented

Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 8.18 to 8.29. Release notes *Sourced from [checkstyle's releases](https://github.com/checkstyle/checkstyle/releases).* > ## checkstyle-8.29 > https://checkstyle.org/releasenotes.html#Release_8.29 > > ## checkstyle-8.28 > https://checkstyle.org/releasenotes.html#Release_8.28 > > ## checkstyle-8.27 > https://checkstyle.org/releasenotes.html#Release_8.27 >...

dependencies