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
{{ message }}
This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
`
im testing feign for http client of my spring boot project
when i use api like below with POJO parameter typed Temp
It seemd that FormEncoder(accurately PojoUtil) just set Nested.toString() for 'title' property of Nested class
so when i log Nested instance
logger say "Nested{title='Nested{title='title 1'}"
this is debugging log for client side
and
below is server side log
`
Start processing with input [name=tempName&list=1&list=2&list=3&nested=Nested%7Btitle%3Dtitle+1%7D&age=100]
`
and nest Map or HashMap or LinkedMultiValueMap not works well. (server said, can not convert String to map)
this is bug? or intended action?
And maybe extending another pojo not works -> feign encode data to body only properties in child POJO
The text was updated successfully, but these errors were encountered: