资源简介
这是一款JSP+SQL做的计算机毕业设计作品。
代码片段和文件信息
package com.action;
import java.util.List;
import java.util.Map;
import org.apache.struts2.ServletActionContext;
import com.dao.TAdminDAO;
import com.model.TAdmin;
import com.opensymphony.xwork2.ActionSupport;
import com.util.Pagination;
public class adminAction extends ActionSupport
{
private int userId;
private String userName;
private String userPw;
private String message;
private String path;
private int index=1;
private TAdminDAO adminDAO;
public String adminAdd()
{
TAdmin admin=new TAdmin();
admin.setUserName(userName);
admin.setUserPw(userPw);
adminDAO.save(admin);
this.setMessage(“操作成功“);
this.setPath(“adminManage.action“);
return “succeed“;
}
public String adminManage()
{
List adminList=adminDAO.findAll();
Map request=(Map)ServletActionContext.getContext().get(“request“);
request.put(“adminList“ adminList);
return ActionSupport.SUCCESS;
}
public String adminManageFenye()
{
List adminList=adminDAO.findAll();
int pageSize=3;
int fromIndex = (index - 1) * pageSize;
int toIndex = Math.min(fromIndex + pageSize adminList.size());
List adminListFenye = adminList.subList(fromIndex toIndex);
Pagination p = new Pagination();//创建 分页对象
p.setIndex(index);//设置页数
p.setPageSize(pageSize);
p.setTotle(adminList.size());//设置总共的条数
p.setData(adminListFenye);//设置数据
p.setPath(“adminManageFenye.action?“);//跳转的路径
Map request=(Map)ServletActionContext.getContext().get(“request“);
request.put(“page“ p);
return ActionSupport.SUCCESS;
}
public String adminDel()
{
adminDAO.delete(adminDAO.findById(userId));
this.setMessage(“删除成功“);
this.setPath(“adminManage.action“);
return “succeed“;
}
public TAdminDAO getAdminDAO()
{
return adminDAO;
}
public void setAdminDAO(TAdminDAO adminDAO)
{
this.adminDAO = adminDAO;
}
public String getMessage()
{
return message;
}
public int getIndex()
{
return index;
}
public void setIndex(int index)
{
this.index = index;
}
public void setMessage(String message)
{
this.message = message;
}
public String getPath()
{
return path;
}
public void setPath(String path)
{
this.path = path;
}
public int getUserId()
{
return userId;
}
public void setUserId(int userId)
{
this.userId = userId;
}
public String getUserName()
{
return userName;
}
public void setUserName(String userName)
{
this.userName = userName;
}
public String getUserPw()
{
return userPw;
}
public void setUserPw(String userPw)
{
this.userPw = userPw;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5186 2011-03-19 02:43 242JSP二手交易系统\ershou\.classpath
文件 529 2011-03-19 03:51 242JSP二手交易系统\ershou\.myhibernatedata
文件 291 2011-03-19 03:51 242JSP二手交易系统\ershou\.myme
文件 1634 2011-03-19 03:51 242JSP二手交易系统\ershou\.project
文件 145 2011-03-26 00:18 242JSP二手交易系统\ershou\.settings\org.eclipse.core.resources.prefs
文件 330 2010-07-16 17:19 242JSP二手交易系统\ershou\.settings\org.eclipse.jdt.core.prefs
文件 273 2011-03-04 16:54 242JSP二手交易系统\ershou\.springBeans
文件 2785 2010-09-17 12:34 242JSP二手交易系统\ershou\src\com\action\adminAction.java
文件 2739 2011-02-23 20:56 242JSP二手交易系统\ershou\src\com\action\jingpaiAction.java
文件 3980 2010-08-22 16:46 242JSP二手交易系统\ershou\src\com\dao\TAdminDAO.java
文件 4153 2010-08-24 09:28 242JSP二手交易系统\ershou\src\com\dao\TLiuyanDAO.java
文件 782 2010-08-25 14:51 242JSP二手交易系统\ershou\src\com\model\TAdmin.hbm.xm
文件 3782 2010-08-24 08:32 242JSP二手交易系统\ershou\src\com\model\TGonggao.java
文件 1089 2010-08-24 09:53 242JSP二手交易系统\ershou\src\com\model\TLiuyan.hbm.xm
文件 6264 2011-02-23 00:51 242JSP二手交易系统\ershou\src\com\model\TUser.java
文件 683 2011-02-23 16:10 242JSP二手交易系统\ershou\src\com\service\catelogService.java
文件 1956 2010-08-25 13:57 242JSP二手交易系统\ershou\src\com\service\loginService.java
文件 2451 2010-08-08 18:07 242JSP二手交易系统\ershou\src\com\util\Pagination.java
文件 1300 2010-07-17 10:44 242JSP二手交易系统\ershou\src\com\util\safeFileter.java
文件 2922 2010-12-28 03:54 242JSP二手交易系统\ershou\src\com\util\upload.java
文件 2534 2010-07-17 10:44 242JSP二手交易系统\ershou\src\com\util\Util.java
文件 1589 2010-08-08 19:54 242JSP二手交易系统\ershou\src\log4j.properties
文件 0 2010-07-17 10:44 242JSP二手交易系统\ershou\src\messages_en_US.properties
文件 8 2010-07-17 10:44 242JSP二手交易系统\ershou\src\messages_zh_CN.properties
文件 3526 2010-07-17 10:44 242JSP二手交易系统\ershou\src\struts.properties
文件 5382 2011-03-19 04:12 242JSP二手交易系统\ershou\src\struts.xm
文件 2812 2010-10-13 02:02 242JSP二手交易系统\ershou\WebRoot\admin\index\adminAdd.jsp
文件 2945 2010-10-15 08:12 242JSP二手交易系统\ershou\WebRoot\admin\index\adminManage.jsp
文件 2573 2010-10-13 01:46 242JSP二手交易系统\ershou\WebRoot\admin\index\sysPro.jsp
文件 88 2013-03-29 12:10 242JSP二手交易系统\ershou\WebRoot\admin\index.jsp
............此处省略1014个文件信息
- 上一篇:android端直播源码
- 下一篇:Java BS网络教学平台+毕业设计(完整版)
评论
共有 条评论