资源简介
超炫登录验证+各项完整信息管理功能(自带数据库包(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.xm
文件 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\ob
目录 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.xm
文件 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.xm
文件 751 2017-09-22 19:03 信息管理系统\guanlixitong-demo\src\com\wy\form\DepartmentForm.java
............此处省略191个文件信息
相关资源
- 基于SSM框架信息管理系统
- SSH+Mysql学生信息管理系统
- 学生信息管理系统基于SQLite
- SSH员工信息管理系统
- 员工信息管理系统源码+sql
- mysql数据库家教系统
- 数据库课设 劳务信息管理系统
- SSM框架开发超市管理系统
- springMVC+spring+mybatis+maven多模块web项目
- ssh图书管理系统源码
- 新闻网站用户端,管理端
- 基于SSM(spring springMVC mybatis mysql)框
- 基于SSM网上订餐系统.zip
- 学生信息管理系统-CRUD-layui增删查改
- 基于eclipse旅游网站ssh带论文
- 医院管理系统
- WebLogic_CVE-2017-3248
- 黑马程序员——淘淘商城项目源码
- 数据库系统设计-课程设计-班级信息管
- delphi学生信息管理系统
- 2020年4月weblogic最新补丁合集
- 《Oracle WebLogic Server开发权威指南》
- 北大青鸟app信息管理系统
- Oracle WebLogic Server开发权威指南.pdf
- JSky_4.0破解版
- 使用Maven整合SSM框架集和Shiro安全框架
- 基于SSM东软图书管理系统毕业论文
- SSM框架实现新闻网站信息管理系统前
- Web超市在线管理系统
- 足球联赛信息管理系统Oracle数据库实
评论
共有 条评论