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
Describe the bug Prerequisite: use property spring.cloud.gateway.mvc.remove-content-length-request-headers-filter.enabled=false disable RemoveContentLengthFilter.
post form data with query params like "/post?foo=fooquery" , the default rest client jdk client will throw error
Describe the bug
Prerequisite: use property spring.cloud.gateway.mvc.remove-content-length-request-headers-filter.enabled=false disable RemoveContentLengthFilter.
post form data with query params like "/post?foo=fooquery" , the default rest client jdk client will throw error
After i dive into code , the following code chunk from form filter .
The writer if current value isQueryParam means variable isQueryParam return true ,the code still append '&' ,so the body length changed
i perfer add a boolen variable to predicate whether should append the character "&"
Sample
The text was updated successfully, but these errors were encountered: