We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My http request is <scheme>://<host>/<path>?id=xxx&id=yyy
<scheme>://<host>/<path>?id=xxx&id=yyy
Function in controller is func(@RequestParam MultiValueMap<String, String> params)
func(@RequestParam MultiValueMap<String, String> params)
Value of params is
params
{ "id": ["xxx", "yyy"] }
{ "id": ["xxx"] }
The text was updated successfully, but these errors were encountered:
This is now merged in the the core branch.
core
Sorry, something went wrong.
Added tests for issue #217
2be72a5
Resolving in preparation for 1.3 release
sapessi
No branches or pull requests
Scenario
My http request is
<scheme>://<host>/<path>?id=xxx&id=yyy
Function in controller is
func(@RequestParam MultiValueMap<String, String> params)
Expected behavior
Value of
params
isActual behavior
Value of
params
isThe text was updated successfully, but these errors were encountered: