Affects: \
spring-web:6.0.9
The original data ends with %, and is Url Encode when passed from the front end. becomes %25
When I used the getStringParameter method to get it, I found that there was something wrong with it. It changed to %, but the spaces in the original data were not decoded.
When using request.getQueryString(), it is found that the data passed is correct.
Is there any way I can get the correct data now? Whether it is encoded or decoded data? (In addition to using querystring to parse it yourself)
Comment From: bclozel
Thanks for getting in touch, but it feels like this is a question that would be better suited to Stack Overflow. As mentioned in the guidelines for contributing, we prefer to use the issue tracker only for bugs and enhancements. Feel free to update this issue with a link to the re-posted question (so that other people can find it) or add some more details if you feel this is a genuine bug.
In this case I think you should review the uri encoding section of our documentation as the parameter is probably not well encoded in the first place.