Esse problema parece trivial, mas não consigo fazer com que funcione corretamente. Estou chamando meu mapeamento de controlador Spring com jquery ajax. O valor de someAttr é sempre uma string vazia, independentemente do valor no url. Por favor me ajude a determinar o porquê.
-URL chamado
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
- Mapeamento de controlador
@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".
}