Queryparameter URL : AspectValues?aspectName=US+Shoe+Size+(Women%27s)
When I using :
@RequestMapping(value = "AspectValues", method = RequestMethod.GET)
@ResponseBody
public Map<String, String> getAspectValues(@RequestParam String aspectName)
aspectName
is getting populated as "US Shoe Size (Women s)"
instead of "US Shoe Size (Women's)"
It would be helpful if any of you could let me know when percent encoding happens, would it give any value as space and the reason for such behavior.