I am trying to upload a file with feign client in spring-boot application. I want to set encoder with the following condition:
if (bodyType.equals(MultipartFile.class)){
// run multi-part logic
} else {
// Delegate to default encoder.
}
I am not able to delegate the control again on default encoder. Can someone help me to find out the solution. I would be highly appreciated.
Thanks in advance and sorry for my poor english ;)