• 大小: 13.17MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-29
  • 语言: 数据库
  • 标签: web  

资源简介

超炫登录验证+各项完整信息管理功能(自带数据库包(SQL))

资源截图

代码片段和文件信息

package com.wy.action;


import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.actions.DispatchAction;

import com.wy.dao.objectDao;
import com.wy.form.CjForm;
import com.wy.form.TrainForm;

public class CjAction extends DispatchAction {
private objectDao objectDao;

public objectDao getobjectDao() {
return objectDao;
}

public void setobjectDao(objectDao objectDao) {
this.objectDao = objectDao;
}

// 奖惩察看操作
public ActionForward queryCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
String information = “from CjForm order by id desc“;
if (request.getParameter(“type“) != null) {
String type = request.getParameter(“type“).trim();
information = “from CjForm where cj_type=“ + type
+ “ order by id desc“;

request.setAttribute(“type“ type);
}
System.out.println(“information:“+information);
List list = objectDao.getobjectList(information);
request.setAttribute(“list“ list);
return mapping.findForward(“queryCj“);
}

// 删除奖惩操作
public ActionForward deleteCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
String id = request.getParameter(“id“);
if (id == null) {
CjForm cjForm = (CjForm) objectDao
.getobjectForm(“from CjForm where id=‘“ + id + “‘“);
this.objectDao.deleteobjectForm(cjForm);
}
return this.queryCj(mapping form request response);
}

// 添加奖惩操作
public ActionForward saveCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
CjForm cjForm = (CjForm) form;
this.objectDao.insertobjectForm(cjForm);
return mapping.findForward(“operationCj“);
}

// 奖惩详细查询
public ActionForward queryOneCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
String id = request.getParameter(“id“);
CjForm cjForm = (CjForm) objectDao
.getobjectForm(“from CjForm where id=‘“ + id + “‘“);
request.setAttribute(“cjForm“ cjForm);
return mapping.findForward(“queryOneCj“);
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-12-21 17:07  信息管理系统\
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\
     文件        1136  2017-09-22 19:11  信息管理系统\guanlixitong-demo\.classpath
     文件        1342  2017-09-22 19:14  信息管理系统\guanlixitong-demo\.project
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\.settings\
     文件         522  2017-09-22 19:11  信息管理系统\guanlixitong-demo\.settings\.jsdtscope
     文件          64  2017-10-25 09:19  信息管理系统\guanlixitong-demo\.settings\org.eclipse.core.resources.prefs
     文件         364  2017-09-22 19:11  信息管理系统\guanlixitong-demo\.settings\org.eclipse.jdt.core.prefs
     文件         585  2017-09-22 19:11  信息管理系统\guanlixitong-demo\.settings\org.eclipse.wst.common.component
     文件         414  2017-09-22 19:11  信息管理系统\guanlixitong-demo\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2017-09-22 19:11  信息管理系统\guanlixitong-demo\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2017-09-22 19:11  信息管理系统\guanlixitong-demo\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\src\
     目录           0  2017-09-22 19:11  信息管理系统\guanlixitong-demo\src1\
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\src\com\
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\src\com\wy\
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\src\com\wy\action\
     文件        2405  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\action\CjAction.java
     文件        2342  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\action\DepartmentAction.java
     文件        7727  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\action\EmployeeAction.java
     文件        3272  2017-09-22 21:04  信息管理系统\guanlixitong-demo\src\com\wy\action\InviteJobAction.java
     文件        3689  2017-10-24 10:27  信息管理系统\guanlixitong-demo\src\com\wy\action\ManagerAction.java
     文件        3538  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\action\PayAction.java
     文件        2084  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\action\TrainAction.java
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\src\com\wy\dao\
     文件        1678  2017-10-18 10:29  信息管理系统\guanlixitong-demo\src\com\wy\dao\objectDao.java
     目录           0  2017-12-21 17:07  信息管理系统\guanlixitong-demo\src\com\wy\form\
     文件        1266  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\form\CjForm.hbm.xml
     文件        1058  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\form\CjForm.java
     文件         976  2017-09-27 11:17  信息管理系统\guanlixitong-demo\src\com\wy\form\DepartmentForm.hbm.xml
     文件         751  2017-09-22 19:03  信息管理系统\guanlixitong-demo\src\com\wy\form\DepartmentForm.java
............此处省略191个文件信息

评论

共有 条评论