日期:2014-05-17 浏览次数:20606 次
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
PersonVO person = new PersonVO() ;
person.setId("hdb") ;
person.setPassword("zzzzz") ;
System.out.println( DAOFactory.getPersonDAOInstance().login(person) );
System.out.println(person.getName()) ;
}
/*
输出:true hdblocal
*/
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="org.lxh.factory.*"%>
<%@ page import="org.lxh.PersonDAO.PersonDAOImply.*"%>
<html>
<head>
<title>留言管理程序</title>
</head>
<body>
<center>
<h1>留言管理范例--JSP+DAO实现</h1>
<hr>
<br><br>
<jsp:useBean id="person" scope="page" class="org.lxh.person.PersonVO" />
<jsp:setProperty name="person" property="*" />
<%
try{
//person.setId("hdb") ;
//person.setPassword("zzzzz") ;
//验证
System.out.println("44444444444") ;
if(DAOFactory.getPersonDAOInstance().login(person) ){
//合法,设置用户名到session范围之中
System.out.println("222222") ;
session.setAttribute( "uname",person.getName() ) ;
%>
<jsp:forward page="login_success.jsp" />
<%
}else{
%>
<jsp:forward page="login.jsp" />
<%
}
}catch(Exception e){
System.out.println("33333333");
}
%>
</center>
</body>
</html>