• 大小: 15.56MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-30
  • 语言: Java
  • 标签: 手机销售  

资源简介

为前台和后台两大模块 电子商务类网站 JSP+SQL SERVER SSH

资源截图

代码片段和文件信息

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;
}
 
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-08 18:32  334JSP手机销售系统\
     文件     1179648  2015-03-01 10:04  334JSP手机销售系统\db_wlgw_Data.MDF
     文件     1048576  2015-03-01 10:04  334JSP手机销售系统\db_wlgw_Log.LDF
     文件     3552052  2012-07-29 21:48  334JSP手机销售系统\luxiang.exe
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\
     文件        5327  2012-07-29 21:37  334JSP手机销售系统\wlgw\.classpath
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\.myeclipse\
     文件         527  2012-04-01 23:09  334JSP手机销售系统\wlgw\.myhibernatedata
     文件         285  2012-07-29 21:36  334JSP手机销售系统\wlgw\.mymetadata
     文件        1632  2012-04-01 23:09  334JSP手机销售系统\wlgw\.project
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\.settings\
     文件         330  2012-04-01 23:09  334JSP手机销售系统\wlgw\.settings\org.eclipse.jdt.core.prefs
     文件         273  2012-04-01 23:09  334JSP手机销售系统\wlgw\.springBeans
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\src\
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\src\com\
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\src\com\action\
     文件        2785  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\action\adminAction.java
     文件        8148  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\action\buyAction.java
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\src\com\dao\
     文件        3980  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\dao\TAdminDAO.java
     文件        4191  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\dao\TCatelogDAO.java
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\src\com\model\
     文件         782  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\model\TAdmin.hbm.xml
     文件        1393  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\model\TLiuyan.java
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\src\com\service\
     文件        1805  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\service\cartService.java
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\src\com\util\
     文件        1387  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\com\util\Cart.java
     文件        3526  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\struts.properties
     文件        8324  2012-04-01 23:09  334JSP手机销售系统\wlgw\src\struts.xml
     目录           0  2015-03-08 18:32  334JSP手机销售系统\wlgw\WebRoot\
............此处省略893个文件信息

评论

共有 条评论