资源简介
本毕业设计是2015年6月作者自己写的哦,比较适合大四狗,你懂得!下载后可以直接运行,对了数据库采用的是mysql 后台采用的是SSH框架搭建的(哈哈,够经典吧)
代码片段和文件信息
package com.myth.action;
import java.lang.reflect.ParameterizedType;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.util.ServletContextAware;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
/*
* 一些公共的代码,
*/
public class baseAction extends ActionSupport implements ModelDrivenServletRequestAwareServletContextAware{
//定义一些返回结果
protected static final String LIST=“list“;
protected static final String ADDUI=“addUI“;
protected static final String UPDATEUI=“updateUI“;
protected static final String TOLIST=“toList“;
protected static final String LOGINUI=“loginUI“;
protected static final String REGISTUI=“registUI“;
protected static String list=LIST;
protected static String addUI=ADDUI;
protected static String updateUI=UPDATEUI;
protected static String toList=TOLIST;
protected static String loginUI=LOGINUI;
protected static String registUI=REGISTUI;
protected T entity;
protected HttpServletRequest request;
protected ServletContext servletContext;
//@Resource
//protected CostService costServiceImp;
//---------------分页时需要用到的当前页属性
protected String currentPage = “1“;
public String getCurrentPage() {
return currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
}
//---------------分页时需要用到的当前页属性
private Class clazz;
public void setServletContext(ServletContext servletContext) {
this.servletContext=servletContext;
}
public void setServletRequest(HttpServletRequest request) {
this.request = request;
}
public baseAction(){
ParameterizedType type=(ParameterizedType) this.getClass().getGenericSuperclass();
clazz=(Class) type.getActualTypeArguments()[0];
try {
entity = (T) clazz.newInstance();
} catch (Exception e) {
e.printStackTrace();
}
}
public T getModel() {
return this.entity;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-03-16 11:23 EmploymentManagementSystem\
文件 3097 2015-02-07 13:27 EmploymentManagementSystem\.classpath
文件 503 2015-03-06 14:00 EmploymentManagementSystem\.myhibernatedata
文件 330 2015-02-09 23:03 EmploymentManagementSystem\.myme
文件 2179 2015-03-16 11:23 EmploymentManagementSystem\.project
目录 0 2015-03-16 11:23 EmploymentManagementSystem\.settings\
文件 500 2015-02-04 11:29 EmploymentManagementSystem\.settings\.jsdtscope
文件 172 2015-02-04 11:29 EmploymentManagementSystem\.settings\com.genuitec.eclipse.core.prefs
文件 1009 2015-02-09 23:03 EmploymentManagementSystem\.settings\com.genuitec.eclipse.j2eedt.core.prefs
文件 145 2015-02-28 14:12 EmploymentManagementSystem\.settings\org.eclipse.core.resources.prefs
文件 364 2015-02-04 11:29 EmploymentManagementSystem\.settings\org.eclipse.jdt.core.prefs
文件 559 2015-03-16 11:37 EmploymentManagementSystem\.settings\org.eclipse.wst.common.component
文件 252 2015-02-04 11:29 EmploymentManagementSystem\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2015-02-04 11:29 EmploymentManagementSystem\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2015-02-04 11:29 EmploymentManagementSystem\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 474 2015-02-07 13:33 EmploymentManagementSystem\.springBeans
目录 0 2015-04-18 18:22 EmploymentManagementSystem\WebRoot\
目录 0 2015-03-16 11:23 EmploymentManagementSystem\WebRoot\me
文件 36 2015-02-04 11:29 EmploymentManagementSystem\WebRoot\me
文件 1660 2015-04-18 19:44 EmploymentManagementSystem\WebRoot\NewFile.html
目录 0 2015-03-16 11:23 EmploymentManagementSystem\WebRoot\WEB-INF\
目录 0 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\
目录 0 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\
目录 0 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\
目录 0 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\action\
文件 2731 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\action\ba
文件 2656 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\action\CompanyAction.class
文件 3157 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\action\LoginuserAction.class
文件 1567 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\action\NationAction.class
文件 2353 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\action\NoticeAction.class
文件 1421 2015-05-29 15:00 EmploymentManagementSystem\WebRoot\WEB-INF\classes\com\myth\action\PermissionAction.class
............此处省略695个文件信息
相关资源
- 毕业设计 SSH2 管理系统 附有论文
- mysql-5.0.16-win32.zip
- 基于JFinal+Hadoop+mysql的云盘管理系统
- 基于SpringMVC的学生成绩管理
- 基于SSH的车辆管理系统
- 学生信息管理系统2222
- Qt编写的学生信息管理系统
- 铁路售票管理系统+数据库
- Extjs6.0 进销存 ssm
- SSM图书管理系统
- spring+springmvc+mybatis搭建的一个佳期酒
- CRM客户关系管理系统带SQL
- 进销存管理系统Oracle
- SSM框架的客户关系管理系统
- 基于ssh的网上书店系统254585
- 基于struts2的个人信息管理系统
- 学生教务管理系统
- 员工考勤管理系统源码[vs2008+SQL2005]
- QT项目:学生成绩管理系统
- spring+springmvc+mybatis搭建的一个酒店管
- 使用s2sh制作的简易的用户管理系统
- 医药管理系统struts+hibernat+mySql,内含
- 基于SSM框架的适合企业的hrm人事管理
- 物业管理系统开发文档和数据库SQL2
- Springboot+Vue前后端分离在线答题+题库
- spring+mybatis+struts2+MySQL课程管理系统
- 公司员工管理系统的设计与实现
- Access实现职工考勤管理系统
- 订单管理系统项目(mvc)+mysql
- 毕设源码+SQL-期刊投递系统的设计与实
评论
共有 条评论