输入例外报告
message无法为JSP编译类:
description服务器遇到阻止它的内部错误 完成此请求。
例外
org.apache.jasper.JasperException:无法为JSP编译类:
jsp文件中第44行发生错误: /jsp/ShoppingCart/AddBook.jsp方法getValue(String)未定义 对于
输入HttpServletRequest
int int_BookID,int_CategoryID,int_Price,int_Quantity;
String str_Title, str_Author, str_Publisher,str_Edition,str_Description;
int_BookID=(int)(10000*Math.random()+1);
int_CategoryID=Integer.parseInt(request.getValue("cat"));
str_Title=request.getParameter("title");
str_Author=request.getParameter("author");
str_Publisher=request.getParameter("pub");
答案 0 :(得分:0)
request.getValue(“cat”)是这里的问题。 我想'猫'是一个参数。 相反,请使用request.getParameter(“cat”)
PS-我建议你先阅读JSP的基础知识,先试试HeadFirst系列。