1. 程式人生 > >SpringMVC 無法訪問到controller的可能原因

SpringMVC 無法訪問到controller的可能原因

@RequestMapping(value="/toplayindex",method={RequestMethod.POST,RequestMethod.GET})

public ModelAndView toKpointPlay(HttpServletRequest request,@PathVariable("Id") int Id){

//程式碼塊

}

從網上查的資料:

@PathVariable  從路徑裡面去獲取變數

@RequestParam 是從請求裡面獲取引數。 

例如上面的方法 請求地址應為  /toplayindex/${id},如果沒有在地址上加上id,會請求不到該方法。