我已經與現在掙扎了幾個星期,我有一個方法:@RequestParam春不工作
@RequestMapping(method = RequestMethod.GET)
public ModelAndView update(
HttpServletRequest request,
HttpServletResponse response,
@RequestParam(value = "id", required = true) String id) throws Exception
{
model = new ModelAndView("/jspadmin/game/update");
getLog().error("::: valor del string: " + request.getParameter("id"));
getLog().error("::: valor del string: de ruta" + id);
}
這個代碼是內部的的MultiActionController,但我不能獲得ID從@RequestParam anotation值
我已經anotation在aplicationContext.xml
即時不使用anotations所有,只是在該方法中,我不知道如果T驅動他控制器需要一個@Controller anotation強制性的使工作中的方法,我不知道什麼即時通訊失蹤,感謝提前傢伙工作。
你有在控制器級設置了@ RequestMapping的'value'屬性?是的,在控制器類上需要'@ Controller'。 –
我在xml中創建控制器,如果我把@controller放在類中,這很重要嗎?因爲我得到下一個錯誤: –