急急急!!!!!!!!!!!!!刚接触JSP,遇到一些麻烦,请教高手!!1
情高手指教:我的程序到底错在哪里了啊
由于刚接触JSP,还望高手不吝赐教:
代码如下:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<jsp:useBean id="calculator" scope="request" class="com.jspdev.ch5.SimpleCalculator">
<jsp:setProperty name="calculator" property="*"/>
</jsp:useBean>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<hr>
计算结果:<%
try
{
calculator.calculate();
out.println(calculator.getFirst()+calculator.getOperator()+calculator.getSecond()+"="+calculator.getResult());
}
catch(Exception e)
{
out.println(e.getMessage());
}
%>
<hr>
<form action="calculate.jsp" method=get>
<table width="75%" border="1" bordercolor="#003300">
<tr bgcolor="#999999">
<td colspan="2">简单的计数器</td>
</tr>
<tr>
<td>第一个参数</td>
<td><input type=text name="first"></td>
</tr>
<tr>
<td>操作符</td>
<td><select name="operator">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
</td>
</tr>
<tr>
<td>第二个参数</td>
<td><input type=text name="second"></td>
</tr>
<tr>
<td colspan="2" bgcolor="#CCCCCC"><input type=submit value=计算></td>
</tr>
</table>
</form>
</body>
</html>
错误提示:
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: 1 in the jsp file: /ch5/calculate.jsp
Generated servlet error:
[javac] Compiling 1 source file
D:\jakarta-tomcat-4.1.30\work\Standalone\localhost\_\ch5\calculate_jsp.java:43: package com.jspdev.ch5 does not exist
com.jspdev.ch5.SimpleCalculator calculator = null;
^
An error occurred at line: 1 in the jsp file: /ch5/calculate.jsp
Generated servlet error:
D:\jakarta-tomcat-4.1.30\work\Standalone\localhost\_\ch5\calculate_jsp.java:45: package com.jspdev.ch5 does not exist
calculator = (com.jspdev.ch5.SimpleCalculator) pageContext.getAttribute("calculator", PageContext.REQUEST_SCOPE);
^
An error occurred at line: 1 in the jsp file: /ch5/calculate.jsp
Generated servlet error:
D:\jakarta-tomcat-4.1.30\work\Standalone\localhost\_\ch5\calculate_jsp.java:48: package com.jspdev.ch5 does not exist
calculator = (com.jspdev.ch5.SimpleCalculator) java.beans.Beans.instantiate(this.getClass().getClassLoader(), "com.jspdev.ch5.SimpleCalculator");
^
3 errors
小弟在此先谢过啦