Bu sorun önemsiz görünüyor, ancak düzgün çalışmasını sağlayamıyorum. Spring denetleyici eşlememi jquery ajax ile arıyorum. SomeAttr değeri, url'deki değerden bağımsız olarak her zaman boş dizedir. Lütfen nedenini belirlememe yardım edin.
-URL aradı
http://localhost:8080/sitename/controllerLevelMapping/1?someAttr=6
-Kontrolör Haritalama
@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
işte burada: docs.spring.io/spring/docs/current/javadoc-api/org/...