I have a use case. Spring MVC REST Url receive content using the GET method code is as follows:
@RequestMapping(\"/q/{key}\") public String query(@PathVariab
Annotations of @ PathVariable may not be able to solve this problem.Last use the workaround is resolved.Code is as follows:
@RequestMapping("/q/**")