Skip to content
New issue

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

AwsProxyHttpServletRequest.getParameterMap() not support multiple query string #217

Closed
superweijiafeng opened this issue Dec 18, 2018 · 2 comments
Assignees
Labels
Milestone

Comments

@superweijiafeng
Copy link
Contributor

  • Framework version: 1.2
  • Implementations: Spring

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 is

{
  "id": ["xxx", "yyy"]
}

Actual behavior

Value of params is

{
  "id": ["xxx"]
}
@sapessi
Copy link
Collaborator

sapessi commented Dec 20, 2018

This is now merged in the the core branch.

@sapessi sapessi self-assigned this Dec 20, 2018
@sapessi sapessi added the bug label Dec 20, 2018
@sapessi sapessi added this to the Release 1.3 milestone Dec 20, 2018
sapessi added a commit that referenced this issue Dec 20, 2018
@sapessi
Copy link
Collaborator

sapessi commented Dec 26, 2018

Resolving in preparation for 1.3 release

@sapessi sapessi closed this as completed Dec 26, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants