Este problema parece trivial, pero no puedo lograr que funcione correctamente. Estoy llamando a mi mapeo de controlador Spring con jquery ajax. El valor de someAttr siempre es cadena vacía independientemente del valor en la url. Por favor, ayúdame a determinar por qué.¿Cómo se recibe un parámetro url con un mapeo de controlador de resorte?
-URL llamados
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
-Controller Mapeo
@RequestMapping(value={"/{someID}"}, method=RequestMethod.GET)
public @ResponseBody int getAttr(@PathVariable(value="someID") final String id,
@ModelAttribute(value="someAttr") String someAttr) {
//I hit some code here but the value for the ModelAttribute 'someAttr' is empty string. The value for id is correctly set to "1".
}