资源简介
暂时无法运行,有想研究的朋友可以拿去研究,能运行了之后麻烦通知一声:QQ:85069768...邮箱:jijiavn@13.com

代码片段和文件信息
package Actions;
import javax.servlet.http.*;
/**
* Represents the logic behind logging a user into the system. This action
* is responsible for checking the username and password are valid. If so
* the appropriate User instance is placed in the HTTP session object under
* the name of “user“.
*
* @author Simon Brown
*/
public class LoginAction extends Action {
/**
* Peforms the processing associated with this action.
*
* @param request the HttpServletRequest instance
* @param response the HttpServletResponse instance
* @return the name of the next view
*/
public String process(HttpServletRequest request HttpServletResponse response) {
System.out.println(“LoginAction : Processing request“);
String id = request.getParameter(“id“);
String password = request.getParameter(“password“);
String view;
// does a user exist with the specified id and password
if (Users.exists(id password)) {
request.getSession().setAttribute(“user“ Users.getUser(id));
view = “/index.jsp“;
} else {
view = “/login.jsp“;
}
return view;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 314 2005-04-12 10:37 PKXT\classSourse\Actions\Action.class
文件 1218 2005-04-12 10:38 PKXT\classSourse\Actions\Action
文件 1369 2005-04-12 10:34 PKXT\classSourse\Actions\FrontController.class
文件 1261 2005-04-09 08:07 PKXT\classSourse\DBCommon\DB.class
文件 1451 2005-04-12 10:36 PKXT\classSourse\Filters\AuthenticationFilter.class
文件 1171 2005-04-12 10:19 PKXT\classSourse\LoginAction.java
文件 2473 2005-05-01 17:13 PKXT\docs\memu.js
文件 2488 2005-05-01 21:46 PKXT\docs\memu.jsp
文件 2805 2005-05-01 17:06 PKXT\docs\级连菜单.js
文件 2747 2005-04-23 23:06 PKXT\docs\级连菜单bak.js
文件 128 2005-04-17 22:59 PKXT\Include\cascadeSelect.jsp
文件 682 2005-05-20 11:21 PKXT\Include\CSS\st
文件 3 2005-04-23 23:02 PKXT\Include\js\commonMenu.jsp
文件 183 2005-04-15 22:17 PKXT\Include\js\st
文件 40 2005-04-15 22:10 PKXT\Include\st
文件 792 2005-05-30 16:33 PKXT\index.jsp
文件 1940 2007-05-07 11:33 PKXT\login.htm
文件 341 2005-06-19 13:23 PKXT\loginout.jsp
文件 3648 2005-06-19 20:36 PKXT\menuset.jsp
文件 71 2004-12-05 23:46 PKXT\menutree\bar1.gif
文件 76 2004-12-05 23:46 PKXT\menutree\bar2.gif
文件 68 2004-12-05 23:46 PKXT\menutree\bar3.gif
文件 377 2004-12-05 23:46 PKXT\menutree\closedfolder.gif
文件 235 2004-12-05 23:46 PKXT\menutree\innerimage1.gif
文件 236 2004-12-05 23:46 PKXT\menutree\innerimage2.gif
文件 65 2004-12-05 23:46 PKXT\menutree\innerimagebg.gif
文件 929 2005-04-11 12:59 PKXT\menutree\innerline.htm
文件 244 2004-12-05 23:46 PKXT\menutree\menufile.gif
文件 6263 2005-04-16 19:36 PKXT\menutree\menutree.js
文件 599 2004-12-05 23:46 PKXT\menutree\openedfolder.gif
............此处省略320个文件信息
- 上一篇:java 实现软键盘
- 下一篇:服装销售ASP.NET
相关资源
- JSP企业人事管理系统设计(源代码+论
- 实现一个图书管理系统
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- JSP,SQL,MVC的选课系统
- 基于JSP的学生宿舍管理系统(源码 数
- JSP选课管理系统
- mysql jsp网站源码下载
- JSP做的化妆品商城
- Jsp购物车实例
- 基于JSP的校友信息管理系统(添加数
- 基于jsp的bbs论坛 非常详细
- jsp oracle通讯录
- JSP学生信息管理系统 Mysql数据库
- 使用jsp servlet做的投票系统
- JSP登陆验证 实现JSP用户名 密码 验
- jsp基于servlet 图书馆管理系统
- jsp学生成绩管理系统.rar
- 在线考试系统源代码(jsp)
- 超级好的纯jsp写的聊天室
- JSP 网上购物网页项目
- JSP+mysql新闻发布系统.rar
- jsp 学生信息管理系统设计与实现
- jsp与SQL Server数据库实现的客户注册登
- 简易教学管理系统(jsp spring struts h
- 学生信息管理系统 JSP MySQL
- jsp ajax 三级联动菜单
- jsp新闻公告与最新消息系统(具备添
- JSP课程设计-留言本 jsp mysql tomcat实现
- jsp 做的 班级管理网站
评论
共有 条评论