Optional int parameter 'id' is present but cannot be translated into a null value due to being decla
原因是
@SuppressWarnings(“static-access”)
@RequestMapping(value=”/handlePic”,method=RequestMethod.GET)
public String handlePic(Model model,HttpSession session, int id,int instruType, String limit){
…
}
int id 这个参数的问题 没传
方法:将int类型换为Integer类型
@SuppressWarnings(“static-access”)
@RequestMapping(value=”/handlePic”,method=RequestMethod.GET)
public String handlePic(Model model,HttpSession session, Integer id,Integer instruType, String limit){
…
}
还没有评论,来说两句吧...