热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

商品管理模块开发

1.修改和新增商品操作publicServerResponsesaveOrUpdateProduct(Productproduct){if(product!null){

1.修改和新增商品操作

public ServerResponse saveOrUpdateProduct(Product product){
        if(product!=null){
            ``` 
            if(StringUtils.isNotBlank(product.getSubImages())) {
                String[] subImageArray = product.getSubImages().split(",");
                if (subImageArray.length > 0) {
                    product.setMainImage(subImageArray[0]);
                }
            ```
            if(product.getId()!=null){
                int resultCount = productMapper.updateByPrimaryKey(product);
                if(resultCount>0){
                    return ServerResponse.createBySuccessMessage("更新商品成功");
                }else{
                    return ServerResponse.createByErrorMessage("更新商品失败");
                }
            }else{
                int resultCount = productMapper.insertSelective(product);
                if(resultCount>0){
                    return ServerResponse.createBySuccessMessage("新增商品成功");
                }else{
                    return ServerResponse.createByErrorMessage("新增更新商品失败");
                }
            }
        }
        return ServerResponse.createByErrorMessage("新增或更新产品参数不正确");
    }

2.产品详情页管理
配置内容都是用properties文件统一编写,便于前后端分离,以及后期的维护,同时这样也更方便于进行热部署。

    public ServerResponse manageProductDetail(Integer productId){
        if(productId==null){
            return ServerResponse.createByErrorCodeMessage(ResponseCode.ILLEGAL_ARGUMENT.getCode(),ResponseCode.ILLEGAL_ARGUMENT.getDesc());
        }
        Product product=productMapper.selectByPrimaryKey(productId);
        if(product==null){
            return ServerResponse.createByErrorMessage("产品已经下架或删除");
        }
        ProductDetailVo productDetailVo=assembleProductDetailVo(product);
        return ServerResponse.createBySuccess(productDetailVo);
    }

    private ProductDetailVo assembleProductDetailVo(Product product){
        ProductDetailVo productDetailVo=new ProductDetailVo();
        productDetailVo.setId(product.getId());
        productDetailVo.setSubtitle(product.getSubtitle());
        productDetailVo.setPrice(product.getPrice());
        productDetailVo.setMainImage(product.getMainImage());
        productDetailVo.setSubImage(product.getSubImages());
        productDetailVo.setCategoryId(product.getCategoryId());
        productDetailVo.setDetail(product.getDetail());
        productDetailVo.setName(product.getName());
        productDetailVo.setStatus(product.getStatus());
        productDetailVo.setStock(product.getStock());

        productDetailVo.setImageHost(PropertiesUtil.getProperty("ftp.server.http.prefix","http://img.happymmall.com/"));

        //ImageHost
        Category category = categoryMapper.selectByPrimaryKey(product.getCategoryId());
        if(category==null){
            productDetailVo.setParentCategoryId(0);//默认根节点 根节点内容为空
        }else{
            productDetailVo.setParentCategoryId(category.getParentId());
        }

        //createTime
        productDetailVo.setCreateTime(DateTimeUtil.dateToStr(product.getCreateTime()));
        productDetailVo.setUpdateTime(DateTimeUtil.dateToStr(product.getUpdateTime()));
        return productDetailVo;
    }

3.商品列表动态功能开发

这里需要使用分页工具pageHelper,每页显示数量,以及页码。

  <select id="selectList" resultMap="BaseResultMap">
    select
    "Base_Column_List"/>
    from mmall_product
    ORDER BY id ASC   
#通常在后面见加上分号,但是切面时会加上limit关键字分页,就会报错
  select>

这里使用vo来存储所需要显示的部分,对于库存,子图等不予展示
POJO、VO、BO的关系

public ServerResponse getProductList(int pageNum,int pageSize){
        PageHelper.startPage(pageNum,pageSize);
        List  product_list=productMapper.selectList();

        List productVoList = Lists.newArrayList();
        for(Product product:product_list) {
            ProductListVo productDetailVo = assembleProductListVo(product);
            productVoList.add(productDetailVo);
        }
        PageInfo pageResult=new PageInfo(product_list);
        pageResult.setList(productVoList);
        return ServerResponse.createBySuccess(pageResult);
    }

    //装配成为指定值对象
    public ProductListVo assembleProductListVo(Product product){
        ProductListVo productListVo=new ProductListVo();
        productListVo.setName(product.getName());
        productListVo.setId(product.getId());
        productListVo.setCategoryId(product.getCategoryId());
                    productListVo.setImageHost(PropertiesUtil.getProperty("ftp.server.http.prefix","http://img.happymmall.com/"));
        productListVo.setMainImage(product.getMainImage());
        productListVo.setPrice(product.getPrice());
        productListVo.setSubtitle(product.getSubtitle());
        productListVo.setStatus(product.getStatus());

        return productListVo;
    }

4.商品搜索功能
根据商品名和id来搜索,或者其中之一,mybatis编写sql语句时注意,where和if条件的使用方法,where可以代替诸如:where 1=1之类的硬编码,智能的替换AND关键字,保证sql语句的正确执行,更美观,扩展性更好。

<select id="selectByNameAndProductId" resultMap="BaseResultMap" parameterType="map">
    SELECT
    "Base_Column_List"/>
    FROM mmall_product
    <where>
      <if test="productName!=null">
        AND productName LIKE #{productName}
      if>
      <if test="productId!=null">
        and productId=#{productId}
      if>
    where>
  select>

业务实现:

    public ServerResponse searchProduct(String productName,Integer productId,int pageNum,int pageSize){
        PageHelper.startPage(pageNum,pageSize);
        if(StringUtils.isNotBlank(productName)){
            productName=new StringBuilder().append("%").append(productName).append("%").toString();
        }
        List productList = productMapper.selectByNameAndProductId(productName,productId);
        List productListVoList = Lists.newArrayList();
        for(Product product:productList) {
            ProductListVo productListVo = assembleProductListVo(product);
            productListVoList.add(productListVo);
        }
        PageInfo pageResult=new PageInfo(productList);
        pageResult.setList(productListVoList);
        return ServerResponse.createBySuccess(pageResult);

    }

5.普通用户通过关键字和分类搜索商品

Mybatis ProductMapper.java定义如下:

List<Product> selectByNameAndProductIds(@Param("productName") String productName, @Param("categoryIdList") List<Integer> categoryIdList);

Mybatis ProductMapper.xml定义如下:

<select id="selectByNameAndProductIds" resultMap="BaseResultMap" parameterType="map">
    SELECT
    "Base_Column_List"/>
    FROM mmall_product
    <where>
      <if test="productName!=null">
        AND productName LIKE #{productName}
      if>
      <if test="productIdList!=null">
        and category_id in
        "categoryIdList" index="index" item="item" open="(" separator="," close=")">
          #{item}
        
      if>
    where>
  select>

业务层实现代码:

    public ServerResponse getProductByKeywordCategory(String keyword,Integer categoryId,int pageNum,int pageSize,String orderBy){

        if(StringUtils.isBlank(keyword) && categoryId==null){
            return ServerResponse.createByErrorCodeMessage(ResponseCode.ILLEGAL_ARGUMENT.getCode(),ResponseCode.ILLEGAL_ARGUMENT.getDesc());
        }
        List categoryIdList=new ArrayList();
        if(categoryId!=null){
            Category category=categoryMapper.selectByPrimaryKey(categoryId); 
            if(StringUtils.isNotBlank(keyword) && category==null){
                //没有该分类并且还没有该关键字 则返回一个空结果集
                PageHelper.startPage(pageNum,pageSize);
                List productListVoList = Lists.newArrayList();
                PageInfo pageResult=new PageInfo(productListVoList); //空结果集不需要用setList转换
                return ServerResponse.createBySuccess(pageResult);
            }
            //获取CategoryIdList service平级调用service
            iCategoryService.selectCategoryAndChildrenById(category.getId()).getData();
        }
        if(StringUtils.isNotBlank(keyword)){
            keyword=new StringBuilder().append("%").append(keyword).append("%").toString();
        }
        PageHelper.startPage(pageNum,pageSize);
        //动态排序
        if(StringUtils.isNotBlank(orderBy)){
            if(Const.ProductListOrderBy.PRICE_ASC_DESC.contains(orderBy)){ //在Const中定义排序的枚举类
                String[] orderByArray=orderBy.split("_"); //与前端约定 用下划线_隔开类别和排序方式
                PageHelper.orderBy(orderByArray[0]+" "+orderByArray[1]);
            }
        }
        List productList = productMapper.selectByNameAndProductIds(
                (StringUtils.isBlank(keyword))?null:keyword,categoryIdList.size()==0?null:categoryIdList);
        //构建ListVO
        List productListVoList=Lists.newArrayList();
        for(Product product:productList) {
            ProductListVo productListVo = assembleProductListVo(product);
            productListVoList.add(productListVo);
        }
        PageInfo pageInfo=new PageInfo(productList);
        pageInfo.setList(productListVoList);
        return ServerResponse.createBySuccess(pageInfo);
    }

Web层部分代码:

    @RequestMapping(value="list.do")
    @ResponseBody
    //这里的方法参数是可选的,因此用@RequestParam设置一下
    public ServerResponse list(@RequestParam(value = "keyword",required = false)String keyword, 
                                         @RequestParam(value = "categoryId",required = false)Integer categoryId,
                                         @RequestParam(value = "pageNum",required = false)Integer pageNum,
                                         @RequestParam(value = "pageSize",required = false)Integer pageSize,
                                         @RequestParam(value = "orderBy",required = false)String orderBy){
        return iProductService.getProductByKeywordCategory(keyword,categoryId,pageNum,pageSize,orderBy);
    }

推荐阅读
  • mysql数据库json类型数据,sql server json数据类型
    mysql数据库json类型数据,sql server json数据类型 ... [详细]
  • 本文详细介绍了如何利用 Bootstrap Table 实现数据展示与操作,包括数据加载、表格配置及前后端交互等关键步骤。 ... [详细]
  • td{border:1pxsolid#808080;}参考:和FMX相关的类(表)TFmxObjectIFreeNotification ... [详细]
  • Maven + Spring + MyBatis + MySQL 环境搭建与实例解析
    本文详细介绍如何使用MySQL数据库进行环境搭建,包括创建数据库表并插入示例数据。随后,逐步指导如何配置Maven项目,整合Spring框架与MyBatis,实现高效的数据访问。 ... [详细]
  • 本文探讨了如何在PHP与MySQL环境中实现高效的分页查询,包括基本的分页实现、性能优化技巧以及高级的分页策略。 ... [详细]
  • 本文详细介绍了Oracle 11g中的创建表空间的方法,以及如何设置客户端和服务端的基本配置,包括用户管理、环境变量配置等。 ... [详细]
  • importjava.io.*;importjava.util.*;publicclass五子棋游戏{staticintm1;staticintn1;staticfinalintS ... [详细]
  • 在现代Web开发中,HTML5 Canvas常用于图像处理和绘图任务。本文将详细介绍如何将Canvas中的图像导出并上传至服务器,适用于拼图、图片编辑等场景。 ... [详细]
  • 本文详细介绍了如何在Android应用中实现重复报警功能。示例代码可在以下路径找到:https://developer.android.com/samples/RepeatingAlarm/index.html。首先,我们将从Manifest文件开始分析。 ... [详细]
  • Java中字符串截取方法详解
    本文详细介绍了Java中常用的字符串截取方法及其应用场景,帮助开发者更好地理解和使用这些方法。 ... [详细]
  • 本文介绍了如何在 MapReduce 作业中使用 SequenceFileOutputFormat 生成 SequenceFile 文件,并详细解释了 SequenceFile 的结构和用途。 ... [详细]
  • 用示例链接 Java 中的 hashset ... [详细]
  • 本文介绍了 Oracle SQL 中的集合运算、子查询、数据处理、表的创建与管理等内容。包括查询部门号为10和20的员工信息、使用集合运算、子查询的注意事项、数据插入与删除、表的创建与修改等。 ... [详细]
  • 理解GiST索引的空间构造原理
    通过空间思维解析GiST索引的构建方式及其在空间数据检索中的应用。 ... [详细]
  • java解析json转Map前段时间在做json报文处理的时候,写了一个针对不同格式json转map的处理工具方法,总结记录如下:1、单节点单层级、单节点多层级json转mapim ... [详细]
author-avatar
手机用户2502873943
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有