Este problema parece trivial, pero no puedo hacer que funcione correctamente. Estoy llamando a mi mapeo de controlador Spring con jquery ajax. El valor de someAttr siempre es una cadena vacía independientemente del valor de la URL. Ayúdame a determinar por qué.
-URL llamado
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
-Mapeo de controladores
@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".
}
@RequestParam
, aquí está: docs.spring.io/spring/docs/current/javadoc-api/org/...