• 大小: 4.62MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-19
  • 语言: Java
  • 标签: JSP  

资源简介

暂时无法运行,有想研究的朋友可以拿去研究,能运行了之后麻烦通知一声: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\Actionhelper.class

     文件       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\styleDefine.css

     文件          3  2005-04-23 23:02  PKXT\Include\js\commonMenu.jsp

     文件        183  2005-04-15 22:17  PKXT\Include\js\styleDefine.css

     文件         40  2005-04-15 22:10  PKXT\Include\style.css

     文件        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个文件信息

评论

共有 条评论