当前页面: 开发资料首页 → JSP 专题 → JSP学习笔记(五)-----JSP中使用JavaBean
摘要: JSP学习笔记(五)-----JSP中使用JavaBean
1. 该实例主要告诉我们怎么样在JSP代码中调用JavaBean构件
2. 使用JavaBean的优点是简化了JSP代码,界面代码和逻辑代码互相分离,便于程序员查看和调试
3. 该实例需要五个文件:login.jsp,test.jsp, userbean.class
4. 首先看一下login.jsp
<html>
<center>
<form method=post action="http://127.0.0.1:8000/test.jsp">
username<input type=text name=username>
<br><br>
password<input type=password name=password>
<br><br>
<input type=submit value="注册">
</form>
</center>
</html>
5. test.jsp代码如下:
<html>
<jsp:useBean id="hello" class="userbean" scope="session" />
<jsp:setProperty name="hello" property="*" />
your username is:<jsp:getProperty name="hello" property="username"/>
<br><br>
your password is:<jsp:getProperty name="hello" property="password"/>
<br><br>
<%
out.println(hello.insert());
%>
</html>
login,test放在j2ee的public_html中,userbean.class放在j2ee\lib\classes中