博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
检索《商品》
阅读量:6613 次
发布时间:2019-06-24

本文共 2136 字,大约阅读时间需要 7 分钟。

hot3.png

header.html

GoodsController.java

 @RequestMapping(value = "selectGoods", method = RequestMethod.POST)    public String  selectGoods(Model model,HttpSession session,GoodsForm goodsForm,Device device){    	log.info("检索相关商品");    	model.addAttribute("commodityType", goodsService.getType());    	List
 list=goodsService.searchGoodsListrelative(goodsForm);     model.addAttribute("list",list);     model.addAttribute("orderTypeId", 1);     UVO uvo = (UVO)session.getAttribute("UVO");     if (uvo == null) {     uvo = new UVO();     session.setAttribute("UVO", uvo);     }     CartForm cartForm = new CartForm();     cartForm.setGuestId(uvo.getGuestId());     model.addAttribute("cartList", cartService.searchCartList(cartForm));     model.addAttribute("goodsForm", goodsForm);     if(device.isNormal()) {     return "shop/list";     } else {     return "mobile/list";     }    }

GoodsService.java

public List
 searchGoodsListrelative(GoodsForm frm) { List
 result = queryDao.executeForObjectList("Goods.selectGoodsListrelative", frm); return result; }

GoodsSqlMap.xml

SELECT commodity.commodity_id as commodityId, commodity.type as commodityTypeId, supplier.supplier_name as supplierName, brand.brand_name as brandName, commodity.commodity_name as commodityName, commodity.weight as weight, commodity.is_gift as isGift, commodity.specifications as specifications, commodity.unit as unit, commodity.benchmark_price as benchmarkPrice, commodity.guide_price as guidePrice, commodity.retail_price as retailPrice, commodity.competition_level as competitionLevel, commodity.note as note, commodity.update_time as updateTime, commodity.update_user as updateUser, commodity.picture_id as pictureId, stock.stock as stock FROM commodity, supplier, brand, stock WHERE commodity.commodity_id = stock.commodity_id AND commodity.supplier_id = supplier.supplier_id AND commodity.brand_id = brand.brand_id AND commodity.commodity_name LIKE '%$commodityName$%'

转载于:https://my.oschina.net/u/2412052/blog/490748

你可能感兴趣的文章
Java操作MongoDB实现CRUD
查看>>
给js文件传参数
查看>>
tomcat web.xml启动加载类
查看>>
Linux 配置SSH信任
查看>>
【九度OJ1352】|【剑指offer41】和为S的两个数字
查看>>
《android-文件大小》
查看>>
HTTPS的工作原理
查看>>
PhoneGap使用PushPlugin插件实现消息推送
查看>>
Boyer-Moore 算法介绍
查看>>
Hi~属于程序猿的专属锦鲤来了 | 转发这条锦鲤,薪水蹭蹭涨!
查看>>
关于Java中的单例模式
查看>>
Swift之GCD开线程通用模版
查看>>
datepicker
查看>>
我的友情链接
查看>>
如何在FalconStor中为主机分配磁盘
查看>>
Linux常用命令
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Java AES算法和UNIX下openssl之间的加解密
查看>>
我的友情链接
查看>>