Hi guys,
I have opened an issue on Feign itself (OpenFeign#1484) and a question on Stack Overflow (here).
I'm having an unexpected behavior that my parameters annotated with @QueryMap are being send in the body of the request, instead of the query string. Is this the expected behavior?
Thanks
Comment From: cbezmen
Hi @Menighin, Which version of feign are you using? Could you share your pom?
Comment From: cbezmen
Did you read the documentation? You should use @SpringQueryMap not @QueryMap.
Comment From: Menighin
Woah... I have not crossed this docs. It was that the problem, thanks @cbezmen . Using @SpringQueryMap worked. Thanks!