资源简介
暂时无法运行,有想研究的朋友可以拿去研究,能运行了之后麻烦通知一声: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
相关资源
- java jsp化妆品销售系统
- JAVA JSP汽车租赁系统
- 城市公交查询系统java
- java开发的完整课程网站jsp
- 基于JSP的在线书店管理系统
- jsp高校智能排课系统
- java版图书管理系统设计文档+源码
- 基于jsp开发的WEB酒店管理系统
- 基于JSP的BBS论坛设计
- JSP BBS论坛
- 人才招聘网站的设计与实现
- JSP都市供求信息网
- JSP作业提交批改系统代码及设计
- jsp做的项目
- 宠物商店 使用JSP 技术web应用
- jsp项目---博客网.rar
- Java 健身房管理系统
- 基于JSP的网上书店的设计与实现
- 公司门户网站jsp
- JSP+MySql网上购物系统(脚本+源代码)
- 基于JSP的酒店预订系统(MySQL版)
- 知识库javaweb版源码
- jsp+mysql酒店管理系统
- jsp都市供求信息网源码
- 354JSP财务管理系统.rar
- jsp/java商城系统
- java-jsp留言板
- 320JSP家教系统.rar
- 网上书店基于HTML+jsp+mysql+servlet的web项
- 学生请假管理系统.rar
评论
共有 条评论