【Java实战项目】Migo商城2.0 参考通用mapper思想对service代码的二次优化封装 四

来源:一叶知秋
作者:知秋

上一篇通过域名访问,nginx反向代理的效果图:

然后步入正题:

对比第一版的代码,这里再贴段的

@Service
public class ItemCatService {
    @Autowired
    private ItemCatMapper itemCatMapper;
    public List<ItemCat> getItemCatList(Long parentId) {
        ItemCat example = new ItemCat();
        example.setParentId(parentId);
        return this.itemCatMapper.select(example);
    }
}

其实很多service都会用到这些增删改查,既然通用mapper可以做封装,我们何不学通用mapper做过通用service?自己造个适合自己的小轮子
要添加的通用方法:

  • 1、 queryById
  • 2、 queryAll
  • 3、 queryOne
  • 4、 queryListByWhere
  • 5、 queryPageListByWhere
  • 6、 save
  • 7、 update
  • 8、 deleteById
  • 9、 deleteByIds
  • 10、 deleteByWhere
package com.migo.service;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.migo.pojo.BasePojo;
import org.springframework.beans.factory.annotation.Autowired;
import tk.mybatis.mapper.common.Mapper;
import tk.mybatis.mapper.entity.Example;
import java.util.Date;
import java.util.List;
/**
 * Author  知秋
 * Created by kauw on 2016/11/10.
 */
public class BaseService <T extends BasePojo>{
    //这里利用了Spring4才支持的泛型注入
    @Autowired
    private Mapper<T> mapper;
    /**
     * 根据id查询
     */
    public T queryById(Long id){
        return this.mapper.selectByPrimaryKey(id);
    }
    /**
     * 根据条件查询一条数据
     */
    public T queryOne(T example){
        return this.mapper.selectOne(example);
    }
    /**
     * 查询所有数据
     */
    public List<T> queryAll(){
        return this.mapper.select(null);
    }
    /**
     * 根据条件查询数据列表
     */
    public List<T> queryListByWhere(T example){
        return this.mapper.select(example);
    }
    /**
     * 分页查询数据列表
     * @param example 查询条件
     * @param page 页数
     * @param rows 页面大小
     * @return
     */
    public PageInfo<T> queryPageListByWhere(T example,Integer page,Integer rows){
        //设置分页参数
        PageHelper.startPage(page,rows);
        //执行查询
        List<T> list = this.mapper.select(example);
        return new PageInfo<T>(list);
    }
    /**
     * 新增数据,注意设置数据的创建和更新时间
     */
    public Integer save(T t){
        Date date=new Date();
        t.setCreated(date);
        t.setUpdated(date);
        return this.mapper.insertSelective(t);
    }
    /**
     * 更新数据,设置数据的更新时间
     */
    public Integer update(T t){
        t.setUpdated(new Date());
        return this.mapper.updateByPrimaryKey(t);
    }
    /**
     * 更新数据,设置数据的更新时间(更新部分数据)
     */
    public Integer updateSelective(T t){
        t.setUpdated(new Date());
        return this.mapper.updateByPrimaryKeySelective(t);
    }
    /**
     * 根据id删除数据
     */
    public Integer deleteById(Long id){
        return this.mapper.deleteByPrimaryKey(id);
    }
    /**
     * 批量删除数据
     * @param clazz
     * @param property
     * @param list
     * @return
     */
    public Integer deleteByIds(Class<T> clazz,String property,List<Object> list){
        Example example=new Example(clazz);
        example.createCriteria().andIn(property,list);
        return this.mapper.deleteByExample(example);
    }
    /**
     * 根据条件删除数据
     */
    public Integer deleteByWhere(T example){
        return this.mapper.delete(example);
    }
}

接下来,之前的service就可以各种省事了

首先改造ItemCatService

/**
 * Author  知秋
 * Created by kauw on 2016/11/8.
 */
@Service
public class ItemCatService extends BaseService<ItemCat> {
   /* @Autowired
    private ItemCatMapper itemCatMapper;
    public List<ItemCat> getItemCatList(Long parentId) {
        ItemCat example = new ItemCat();
        example.setParentId(parentId);
        return this.itemCatMapper.select(example);
    }*/
}

接着改造ItemCatController

@Controller
@RequestMapping("item/cat")
public class ItemCatController {
    @Autowired
    private ItemCatService itemCatService;
    /**
     * 根据父节点id查询商品类目表
     */
    @RequestMapping(method = RequestMethod.GET)
public ResponseEntity<List<ItemCat>> getItemCatList(
        @RequestParam(value = "id",defaultValue = "0") Long parentId
){
    try {
        //List<ItemCat> itemcats=itemCatService.getItemCatList(parentId);
        ItemCat example=new ItemCat();
        example.setParentId(parentId);
        List<ItemCat> itemCats = itemCatService.queryListByWhere(example);
        if (null==itemCats&&itemCats.isEmpty()){
            //资源不存在,响应404
            return ResponseEntity.status(HttpStatus.NOT_FOUND).body(null);
        }
        return  ResponseEntity.ok(itemCats);
    } catch (Exception e) {
        e.printStackTrace();
        // 出错,响应500
        return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(null);
    }
}
}

顺带改造下写的那个测试类

/**
 * Author  知秋
 * Created by kauw on 2016/11/8.
 */
@RunWith(SpringJUnit4ClassRunner.class) //表示继承了SpringJUnit4ClassRunner类
@ContextConfiguration(locations = {"classpath*:spring/*.xml"})
public class Test {
    private static Logger logger=Logger.getLogger(Test.class);
    @Resource
    private ItemCatService itemCatService;
    @org.junit.Test
    public void test1(){
       // List<ItemCat> itemCatList = itemCatService.getItemCatList(0L);
        ItemCat example=new ItemCat();
        example.setParentId(0L);
        List<ItemCat> itemCatList = itemCatService.queryListByWhere(example);
        logger.info(JSON.toJSONString(itemCatList));
    }
}

运行项目,完美,就不截图了,改造成功

往期回顾:


更多内容请关注:极乐科技

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,971评论 25 707
  • 来源:一叶知秋作者:知秋 这里简单说下fastdfs的说明搭建使用,回头专门出附章来讲这块的api和各种配置,这里...
    极乐君阅读 2,040评论 0 8
  • Vue 实例 在文档中经常会使用 vm 这个变量名表示 Vue 实例,在实例化 Vue 时,需要传入一个选项对象,...
    鄙人才疏学浅阅读 584评论 0 1
  • 对我笑吧 想你我初次见面 对我说吧 即使誓言明天就会变 抱紧我吧 在天气这么冷的夜晚 想起我吧 在你感到变老的那一...
    眉目亦如画i阅读 259评论 1 0
  • 很久以前 风总是走的很低 指尖绕过的刹那 问候了世间的天空大地 我不断思索你的妆容 对着蝴蝶问候你的存在 随着流水...
    大善若愚阅读 371评论 0 2