I have a URL coming in that is not in a good format (contains brackets) []
I want to intercept the incoming request from the HttpServletRequest
object and modify this URL to encode it, then continue the flow of the function.
for example: https://my-website.com/getData/?when[name="john"]&location[place="starbucks"]
I want to handle the encoding of this string once it hits my function.