• 大小: 16.71MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-01
  • 语言: Java
  • 标签: ssh  登陆  分页  购物车  

资源简介

用ssh框架写的一个小型购物车,包含登陆,分页,增删改查,购物车,订单各项功能,有数据库mysql语句,各个jar包也有,只是页面比较交单,但功能齐全,适合初学者!

资源截图

代码片段和文件信息

package com.zq.action;

import java.util.Map;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;
import com.zq.dao.GoodDAO;
import com.zq.model.Good;
import com.zq.model.GoodItem;
import com.zq.util.Cart;

public class BuyGoodAction extends ActionSupport {
private int quantity;
private int id;// 书的id
private GoodDAO goodDAO;
private String path;

public String addToCart() {
Map session = ServletActionContext.getContext().getSession();
Good good = this.goodDAO.loadByGoodId(id);
// System.out.println(good.getGoodName());
// System.out.println(good.getPrice());
GoodItem goodItem = new GoodItem();
goodItem.setGood(good);
goodItem.setQuantity(quantity);
System.out.println(quantity);
Cart cart = (Cart) session.get(“cart“);
if (cart == null) {
cart = new Cart();
}
cart.addToCart(id goodItem);
session.put(“cart“ cart);
this.setPath(“myCart.action“);
return “succeed“;

}
    
public String myCart(){
return SUCCESS;
}

public int getQuantity() {
return quantity;
}

public void setQuantity(int quantity) {
this.quantity = quantity;
}

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public GoodDAO getGoodDAO() {
return goodDAO;
}

public void setGoodDAO(GoodDAO goodDAO) {
this.goodDAO = goodDAO;
}

public String getPath() {
return path;
}

public void setPath(String path) {
this.path = path;
}
    

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      10602  2013-07-16 13:36  test\.classpath

     文件        285  2013-07-23 09:03  test\.mymetadata

     文件       1277  2013-07-16 14:43  test\.project

     文件         88  2013-07-16 13:35  test\.settings\org.eclipse.core.resources.prefs

     文件       5092  2013-07-23 16:50  test\DB\test.sql

     文件         76  2013-07-23 15:46  test\src\.struts.mex

     文件       1544  2013-07-16 22:16  test\src\com\zq\action\BuyGoodAction.java

     文件       3112  2013-07-23 15:47  test\src\com\zq\action\GoodAction.java

     文件       3645  2013-07-22 13:12  test\src\com\zq\action\OrderAction.java

     文件       1628  2013-07-16 15:14  test\src\com\zq\action\UserAction.java

     文件       2330  2013-07-23 13:41  test\src\com\zq\dao\GoodDAO.java

     文件        519  2013-07-16 22:41  test\src\com\zq\dao\GoodItemDAO.java

     文件       1104  2013-07-16 20:06  test\src\com\zq\dao\OrderDAO.java

     文件        868  2013-07-16 14:32  test\src\com\zq\dao\UserDAO.java

     文件        928  2013-07-16 15:23  test\src\com\zq\model\Good.java

     文件       1455  2013-07-17 09:34  test\src\com\zq\model\GoodItem.java

     文件       2265  2013-07-16 20:34  test\src\com\zq\model\Order.java

     文件       1650  2013-07-16 14:08  test\src\com\zq\model\User.java

     文件       1231  2013-07-16 17:16  test\src\com\zq\util\Cart.java

     文件       2606  2013-07-23 11:22  test\src\com\zq\util\PageInfo.java

     文件        235  2013-07-23 15:20  test\src\struts.properties

     文件       2863  2013-07-23 15:46  test\src\struts.xml

     文件       1483  2013-07-16 15:18  test\WebRoot\admin\listUser.jsp

     文件       1231  2013-07-16 15:16  test\WebRoot\admin\login.jsp

     文件       1769  2013-07-16 22:19  test\WebRoot\cart\myCart.jsp

     文件        720  2013-07-16 16:47  test\WebRoot\common\succeed.jsp

     文件       1733  2013-07-23 15:24  test\WebRoot\good\addGood.jsp

     文件       1252  2013-07-16 17:19  test\WebRoot\good\goodDetail.jsp

     文件       4709  2013-07-23 16:29  test\WebRoot\good\listGood.jsp

     文件       5064  2013-07-23 16:43  test\WebRoot\good\searchGood.jsp

............此处省略125个文件信息

评论

共有 条评论