為了方便自己以後複習,所以寫的比較仔細,記錄下自己的成長。
既然是做購物車,那麼前提條件是首先需要一系列商品,也就是要建造一個實體,這裡建了一個商品表、
透過查詢在瀏覽器上顯示
透過查詢基本顯示在瀏覽器上已經完成了,現在進入我們的重頭戲,Servlet
點擊放入購物車時,將訪問Servlet
購物車代碼
package com.servlet; import java.io.IOException; import java.io.PrintWriter; import java.util.HashMap; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.dao.GoodsDAO; import com.entity.Goods; import com.entity.GoodsItem; public class PutCarServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); doPost(request, response); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); //得到编号 String id = request.getParameter("goodsID"); //通过编号得到商品对象的所有信息 GoodsDAO dao = new GoodsDAO(); Goods g = dao.getGoodsByID(id); //将商品放入购物车 //map集合 就是购物车 // map<键,值> 商品编号作为键 商品项作为值 //1.判断是否存在购物车 //购物车是放在session中的 //从session去取购物车 Map<String,GoodsItem> gwc = (Map<String,GoodsItem>)request.getSession().getAttribute("gwc"); //判断是否存在 if(gwc==null){ //创建购物车 gwc = new HashMap<String, GoodsItem>(); } //将商品项放入购物车 //put(商品编号,商品项) 向gwc集合中添加数据 //你要想 购物车中是否已存在该商品 // 说白了 就是在gwc集合中去匹配是否存在这样一个商品项 ==》去集合中匹配是否存在这样一个商品编号的key //判断是否存在商品编号的键 if(gwc.containsKey(id)){ //存在 //设置数量+1 //通过键 获得值 //键为商品编号 值为商品项 商品项里面包含商品对象信息 和数量信息 GoodsItem spx = gwc.get(id); //得到原来的数量 int yldsl = spx.getCount(); //在原来的数量上+1 gwc.get(id).setCount(yldsl+1); // gwc.get(id).setCount(gwc.get(id).getCount()+1) ; }else{ //不存在 //创建一个新的商品项 数量为1 GoodsItem gi = new GoodsItem(g, 1); //将此商品项放入gwc gwc.put(id, gi); } //将购物车放入session request.getSession().setAttribute("gwc", gwc); //继续购物 response.sendRedirect("index.jsp"); } }
執行結果:更多
java web開發之實現購物車功能相關文章請關注PHP中文網!