Questo problema sembra banale, ma non riesco a farlo funzionare correttamente. Sto chiamando la mia mappatura del controller Spring con jquery ajax. Il valore per someAttr è sempre una stringa vuota indipendentemente dal valore nell'URL. Per favore aiutami a determinare il motivo.
-URL chiamato
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
-Controller Mapping
@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
, eccola: docs.spring.io/spring/docs/current/javadoc-api/org/…