一个在JSP页面上使用JavaBean的例子
本文是在上一篇文章的基础上,实现的一个在JSP页面上使用JavaBean的例子,用户可以通过在页面上输入姓名和学号信息(而不是用一个特定的值去设置JavaBean的某个属性),从而返回相应的信息。本文直接返回用户输入的信息,而在实际应用中,通常在用户输入信息后,会通过Servlet进行逻辑处理或者数据库查询,例如文章。实现过程如下:
一、JavaBean IDE中实现
在Java Web项目中,分别新建名为Student的java类,名为submit.jsp、setProperty.jsp的JSP页面。
1、Student.java
/**
*
1. @author Administrator
*/
public class Student {
private String sno="";
private String sname="";
/**
* @return the sno
*/
public String getSno() {
return sno;
}
/**
* @param sno the sno to set
*/
public void setSno(String sno) {
this.sno = sno;
}
/**
* @return the sname
*/
public String getSname() {
return sname;
}
/**
* @param sname the sname to set
*/
public void setSname(String sname) {
this.sname = sname;
}
}
2、 submit.jsp
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<form action="setProperty.jsp" method="post">
学号:<input type="text" name="sno" value=""/><br/>
姓名:<input type="text" name="sname" value=""/><br/>
<input type="submit" value="提交"/><br/>
</form>
</body>
</html>
3、setProperty.jsp
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<% request.setCharacterEncoding("utf-8");%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<jsp:useBean id="s" class="example.Student" scope="page"/>
<jsp:setProperty name="s" property="*" />
<jsp:getProperty name="s" property="sno"/>
<jsp:getProperty name="s" property="sname"/>
</body>
</html>
注:
1)使页面可以显示汉字,而不是乱码
<% request.setCharacterEncoding("utf-8");%>
2)setProperty.jsp出现的封装方式:
<jsp:setProperty name="s" property="*" />
等价于
<jsp:setProperty name="s" property="sno" param="sno"/>
<jsp:setProperty name="s" property="sname" param="sname"/>
当使用<jsp:setProperty name=”s” property=”*” />这种形式封装数据时,要求提交信息的页面中,控件名与JavaBean中定义的属性名要完全匹配,即submit.jsp中的name要和Student.java定义的name完全相同,只有这样才能自动填充。
二、运行结果
1)页面提交
1)输出信息
转载请标明出处:http://blog.csdn.net/dengpeng0419/article/details/46611081