l 商品详情页实现
1、商品查询服务事项
2、商品详情展示
3、添加缓存
1、Taotao-portal接收页面请求,接收到商品id。
2、调用taotao-rest提供的商品详情的服务,把商品id作为参数传递给服务。接收到商品详细。
3、渲染结果,展示商品详细页面
4、为了提高响应速度,商品详情页的内容需要分步骤加载。
第一步:先展示商品基本信息,例如商品的名称、图片、价格。
第二步:展示商品的描述,此时商品页面已经展示完毕,需要ajax请求商品描述。展示的时机是页面加载完毕后一秒钟。
第三步:展示商品规格。当用户点击商品规格选项卡时展示。使用ajax请求商品规格。
5、在搜索页面点击商品的图片或者商品名称请求商品详情页面。
商品详情页请求的url:/item/{itemId}.html
商品描述请求的url:/item/desc/{itemId}.html
商品规格请求的url:/item/param/{itemId}.html
需要实现三个服务:
1、根据商品id查询商品详细表。
2、根据商品id查询商品描述表
3、根据商品id查询商品规格参数表。
因为都是单表查询所以使用逆向工程生成的mapper文件即可。
tb_item
tb_item_desc
tb_item_param_item
@Service
public class ItemServiceImplimplements ItemService {
@Autowired
private TbItemMapperitemMapper;
@Autowired
private TbItemDescMapperitemDescMapper;
@Autowired
private TbItemParamItemMapperitemParamItemMapper;
/**
* 根据id取商品信息
* Title: getItemById
* Description:
* @param id
* @return
* @throws Exception
* @see com.taotao.rest.service.ItemService#getItemById(java.lang.Long)
*/
@Override
public TbItem getItemById(Longid) throws Exception {
TbItem tbItem = itemMapper.selectByPrimaryKey(id);
return tbItem;
}
/**
* 根据id取商品描述
* Title: getItemDescById
* Description:
* @param id
* @return
* @throws Exception
* @see com.taotao.rest.service.ItemService#getItemDescById(java.lang.Long)
*/
@Override
public TbItemDesc getItemDescById(Longid) throws Exception {
TbItemDesc itemDesc = itemDescMapper.selectByPrimaryKey(id);
return itemDesc;
}
/**
* 根据商品id取规格参数
* Title: getItemParamById
* Description:
* @param id
* @return
* @throws Exception
* @see com.taotao.rest.service.ItemService#getItemParamById(java.lang.Long)
*/
@Override
public TbItemParamItem getItemParamById(Longid) throws Exception {
TbItemParamItemExample example = new TbItemParamItemExample();
Criteria criteria =example.createCriteria();
criteria.andItemIdEqualTo(id);
List list = itemParamItemMapper.selectByExampleWithBLOBs(example);
TbItemParamItem itemParamItem = null;
if (null !=null && !list.isEmpty()) {
itemParamItem = list.get(0);
}
return itemParamItem;
}
}
2.3.3. Controller
@Controller
@RequestMapping("/items")
public class ItemController {
@Autowired
private ItemService itemService;
@RequestMapping("/item/{id}")
@ResponseBody
public TaotaoResult getItemById(@PathVariable Longid) {
//有效性验证
if (id ==null) {
return TaotaoResult.build(400,"参数中必须包含id");
}
TbItem tbItem = null;
//根据id查询商品信息
try {
tbItem = itemService.getItemById(id);
} catch (Exception e) {
e.printStackTrace();
//发生异常时返回异常信息
return TaotaoResult.build(500, ExceptionUtil.getStackTrace(e));
}
return TaotaoResult.ok(tbItem);
}
@RequestMapping("/itemdesc/{id}")
@ResponseBody
public TaotaoResult getItemDescById(@PathVariable Longid) {
//有效性验证
if (id ==null) {
return TaotaoResult.build(400,"参数中必须包含id");
}
TbItemDesc tbItemDesc = null;
//根据id查询商品明细信息
try {
tbItemDesc = itemService.getItemDescById(id);
} catch (Exception e) {
e.printStackTrace();
//发生异常时返回异常信息
return TaotaoResult.build(500, ExceptionUtil.getStackTrace(e));
}
return TaotaoResult.ok(tbItemDesc);
}
@RequestMapping("/itemparam/{id}")
@ResponseBody
public TaotaoResult getItemParamById(@PathVariable Longid) {
//有效性验证
if (id ==null) {
return TaotaoResult.build(400,"参数中必须包含id");
}
TbItemParamItem tbItemParamItem = null;
//根据id查询商品规格参数信息
try {
tbItemParamItem = itemService.getItemParamById(id);
} catch (Exception e) {
e.printStackTrace();
//发生异常时返回异常信息
return TaotaoResult.build(500, ExceptionUtil.getStackTrace(e));
}
return TaotaoResult.ok(tbItemParamItem);
}
}
由于页面展示商品信息时,需要展示图片列表。多张图片在数据库中存储的格式是存储在同一个字段中使用逗号分隔的。所以商品展示时需要在pojo中做处理。故此在portal中自定义一个商品的pojo类。
public class Item {
private Long id;
private String title;
private String sellPoint;
private Long price;
private Integer num;
private String barcode;
private String image;
private Long cid;
private Byte status;
private Date created;
private Date updated;
//省略get、set方法。。。。。。
//添加此方法拆分图片列表
public String[] getImages() {
if (image != null && image != "") {
String[] strings = image.split(",");
return strings;
}
return null;
}
}
2.4.2. Service
@Service
public class ItemServiceImplimplements ItemService {
@Value("${REST_BASE_URL}")
private String REST_BASE_URL;
@Value("${ITEMS_ITEM_URL}")
private String ITEMS_ITEM_URL;
@Value("${ITEMS_ITEMDESC_URL}")
private String ITEMS_ITEMDESC_URL;
@Value("${ITEMS_ITEMPARAM_URL}")
private String ITEMS_ITEMPARAM_URL;
@Override
public Item getItemById(Longid) throws Exception {
// 查询商品信息
String result = HttpClientUtil.doGet(REST_BASE_URL +ITEMS_ITEM_URL + id);
// 转换成java对象
TaotaoResult taotaoResult = TaotaoResult.formatToPojo(result,Item.class);
Item item =null;
if (taotaoResult.getStatus() == 200) {
item = (Item)taotaoResult.getData();
}
return item;
}
@Override
public TbItemDesc geTbItemDescById(Longid) throws Exception {
// 查询商品信息
String result = HttpClientUtil.doGet(REST_BASE_URL +ITEMS_ITEMDESC_URL + id);
// 转换成java对象
TaotaoResult taotaoResult = TaotaoResult.formatToPojo(result, TbItemDesc.class);
TbItemDesc itemDesc = null;
if (taotaoResult.getStatus() == 200) {
itemDesc = (TbItemDesc) taotaoResult.getData();
}
return itemDesc;
}
@Override
public String geTbItemParamItemById(Longid) throws Exception {
// 查询商品信息
String result = HttpClientUtil.doGet(REST_BASE_URL +ITEMS_ITEMPARAM_URL + id);
// 转换成java对象
TaotaoResult taotaoResult = TaotaoResult.formatToPojo(result, TbItemParamItem.class);
String resultHtml = "";
if (taotaoResult.getStatus() == 200) {
try {
TbItemParamItem itemParamItem = (TbItemParamItem)taotaoResult.getData();
//取规格参数信息
String paramData = itemParamItem.getParamData();
//把规格参数转换成java对象
List
2.4.3. Controller
@Controller
public class ItemController {
@Autowired
private ItemService itemService;
@RequestMapping("/item/{id}")
public String showItem(@PathVariable Longid, Model model) throws Exception {
//取商品信息
Item item = itemService.getItemById(id);
//把结果传递给页面
model.addAttribute("item",item);
//返回逻辑视图
return "item";
}
@RequestMapping(value="/item/desc/{id}", produces=MediaType.TEXT_HTML_VALUE+";charset=utf-8")
@ResponseBody
public String showItemDesc(@PathVariable Longid) throws Exception {
//取商品描述
TbItemDesc itemDesc = itemService.geTbItemDescById(id);
//返回商品描述信息
return itemDesc.getItemDesc();
}
@RequestMapping(value="/item/param/{id}", produces=MediaType.TEXT_HTML_VALUE+";charset=utf-8")
@ResponseBody
public String showItemParam(@PathVariable Longid) throws Exception {
//取规格参数
String itemParamItem = itemService.geTbItemParamItemById(id);
//返回规格参数信息
return itemParamItem;
}
}
@Override
public TbItem getItemById(Long id) throws Exception {
//缓存中命中
//在redis中无法对hash中的可以做expire。所以使用另外一种方法:key的命名方法为“主key:id”
String itemCache = jedisCluster.get(TB_ITEM_KEY + ":" + id);
try {
if (!StringUtils.isBlank(itemCache)) {
TbItem tbItem = JsonUtils.jsonToPojo(itemCache, TbItem.class);
return tbItem;
}
} catch (Exception e) {
e.printStackTrace();
}
//如果缓存中没有数据,查询数据库
TbItem tbItem = itemMapper.selectByPrimaryKey(id);
//把数据缓存起来
try {
jedisCluster.set(TB_ITEM_KEY + ":" + id, JsonUtils.objectToJson(tbItem));
//设置过期时间,有效期一天
jedisCluster.expire(TB_ITEM_KEY + ":" + id, 60*60*24);
} catch (Exception e) {
e.printStackTrace();
}
return tbItem;
}
Redis是内存数据库也属于稀缺资源,所以不应该永久占用,所以要设置过期时间。当商品内容更新后,需要同步缓存。同步方法参见内容部分的缓存同步方法。