fix: parameters encoding doesn't work for ALB when using Spring Cloud #1386
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue #, if available: #1279
Description of changes:
Added parameter decoding for ALB when using Spring Cloud.
Context:
When an ALB receives a request with URL-encoded query parameters, it passes those parameters to the Lambda function exactly as they were received, with the encoding intact. For example:
• Original URL: https://example.com/path?time=1970-01-01T00%3A00%3A00.004Z
• In the ALB event sent to Lambda: "time": "1970-01-01T00%3A00%3A00.004Z"
The %3A (representing :) remains encoded in the query parameter value.
This behavior differs from API Gateway, which automatically decodes URL-encoded query parameters before including them in the event object sent to Lambda functions.
Currently when we use the classic way of mapping request events to servlet requests, things work fine as the decoding of queryStringParameters is properly handled for ALB. However, when using the new Spring Cloud (AwsSpringHttpProcessingUtils), the parameters are not decoded. This PR fixes the issue.
Note: Ideally, this decoding logic should reside inside the ServerlessHttpServletRequest the same way it's done in AwsProxyHttpServletRequest
By submitting this pull request