この問題は簡単ではありませんが、正しく動作するようにはできません。私はjquery ajaxでSpringコントローラのマッピングを呼び出しています。 someAttrの値は、URLの値に関係なく、常に空文字列です。理由を判断するのを手伝ってください。スプリングコントローラのマッピングでurlパラメータを受け取る方法
-URLあなたは、例えば、@RequestParam
代わりの@ModelAttribute
を使用する必要があります
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
-controllerマッピング
@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".
}