この問題はささいなことのようですが、適切に機能させることができません。Springコントローラーマッピングをjquery ajaxで呼び出しています。someAttrの値は、URLの値に関係なく、常に空の文字列です。理由を教えてください。
-呼び出されたURL
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
-コントローラーマッピング
@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".
}