You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i'm trying to send request, i recieve such exception: Caused by: feign.codec.EncodeException: class java.util.HashMap is not a type supported by this encoder.
I think it's because of this comparison: if (bodyType != MAP_STRING_WILDCARD) in FormEncoder.encode method. Replacement this comparison by equals working fine.
The text was updated successfully, but these errors were encountered:
zhurpavel
pushed a commit
to zhurpavel/feign-form
that referenced
this issue
Nov 3, 2016
Hi!
I have such api:
And builder like that:
When i'm trying to send request, i recieve such exception:
Caused by: feign.codec.EncodeException: class java.util.HashMap is not a type supported by this encoder
.I think it's because of this comparison:
if (bodyType != MAP_STRING_WILDCARD)
in FormEncoder.encode method. Replacement this comparison byequals
working fine.The text was updated successfully, but these errors were encountered: