I need to handle requests like
www.example.com/student/thisisname?age=23&country=UK&city=London
I am just interested in thisisname
part and value of city
parameter.
I have following RequestMapping but it does not work. I tried {name}{.*:city}
as well.
@RequestMapping(value = "/{name:.*}{city}", method = RequestMethod.GET)