jsp编程时出错
<html>
<jsp:useBean id="hello" class="user.UserBean" scope="session"/>
<jsp:setProperty name="hello" property="*" />
<%
out.println("hello, ");
%>
<jsp:getProperty name="hello" property="username" />
<br><br>
your password is:<jsp:getProperty name="hello" property="password"/>
<br><br>
</html>
这段代码有错,系统提示:Severity Description Resource In Folder Location Creation Time
0 The local variable hello is never read display.jsp hello/WebContent line 2 2007年10月29日 16:23:21
我刚接触jsp,希望大家帮帮忙!