Failed to load resource: the server responded with a status of 404 ()

错误 1Failed to load resource: the server responded with a status of 404 ()

错误2  id to load is required for loading




错误3

java.lang.IllegalArgumentException: id to load is required for loading


原因一:出现这个异常的是使用struts标签进行传值导致的,如:

删除
修改
使用上面的方式传id则出现java.lang.IllegalArgumentException: id to load is required for loading异常,导致id为null,究其原因是因为木有将id的值传递过去


改成
删除
修改
则可以不会出现这个异常


原因二:在调用有关id的方法里没有进行空值判断
if(id==null){
return null;
}else{
执行操作...............
}

你可能感兴趣的:(疑难杂症)