Mybatis-plus通用CRUD

举报
陶然同学 发表于 2022/06/24 22:21:31 2022/06/24
【摘要】 1.通用CRUD 在BaseMapper里面封装了很多方法 BaseMapper继承了Mapper 下面对BaseMapper里面的方法做详解 1.1添加 insert 添加只有一个方法insert ...

1.通用CRUD

在BaseMapper里面封装了很多方法 BaseMapper继承了Mapper 下面对BaseMapper里面的方法做详解

1.1添加
insert
添加只有一个方法insert 和通用Mapper的没有什么区别 但是要注意的是Mybatis-plus会随机生成主键id 必须要载实体类加上自动增长@TableId(type = IdType.AUTO) 否则就会使用Mybatis-plus生成的随机id 下次自动增长就会从Mybatis-plus生成的id开始

    /**
     * 插入一条记录
     *
     * @param entity 实体对象
     */
    int insert(T entity);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述
1.2删除
deleteById
根据ID删除 返回一个int类型 受影响的行数

    /**
     * 根据 ID 删除
     *
     * @param id 主键ID
     */
    int deleteById(Serializable id);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述
deleteByMap
根据Map里面的key和value来删除数据 key对应数据列名 value对应值 只有符合map的条件就会删除

    /**
     * 根据 columnMap 条件,删除记录
     *
     * @param columnMap 表字段 map 对象
     */
    int deleteByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述
delete
根据Wrapper里面封装的条件来删除数据 有两种实现方式

    /**
     * 根据 entity 条件,删除记录
     *
     * @param wrapper 实体对象封装操作类(可以为 null)
     */
    int delete(@Param(Constants.WRAPPER) Wrapper<T> wrapper);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

方式一:直接通过warpper封装条件 删除数据
在这里插入图片描述
方式二:间接封装条件
在这里插入图片描述
deleteBatchIds
批量删除数据

    /**
     * 删除(根据ID 批量删除)
     *
     * @param idList 主键ID列表(不能为 null 以及 empty)
     */
    int deleteBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

1.3修改
updateById
根据id修改

    /**
     * 根据 ID 修改
     *
     * @param entity 实体对象
     */
    int updateById(@Param(Constants.ENTITY) T entity);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述
update
根据条件修改 有两种方式 一种直接封装条件另一种间接封装条件 根据Wrapper条件来修改数据

    /**
     * 根据 whereEntity 条件,更新记录
     *
     * @param entity        实体对象 (set 条件值,可以为 null)
     * @param updateWrapper 实体对象封装操作类(可以为 null,里面的 entity 用于生成 where 语句)
     */
    int update(@Param(Constants.ENTITY) T entity, @Param(Constants.WRAPPER) Wrapper<T> updateWrapper);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

方式一:间接的封装数据
在这里插入图片描述
方式二:直接封装数据
在这里插入图片描述

1.4查询
selectById
根据ID查询

    /**
     * 根据 ID 查询
     *
     * @param id 主键ID
     */
    T selectById(Serializable id);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

selectBatchIds
批量查询 想当于sql语句的in 只要符合的 就会查询出来

    /**
     * 查询(根据ID 批量查询)
     *
     * @param idList 主键ID列表(不能为 null 以及 empty)
     */
    List<T> selectBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

selectOne
根据Wrapper查询一条记录 如果查询到两条记录就会报错

    /**
     * 根据 entity 条件,查询一条记录
     *
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    T selectOne(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

selectCount
根据Wrapper条件 查询总记录数

    /**
     * 查询(根据 columnMap 条件)
     *
     * @param columnMap 表字段 map 对象
     */
    List<T> selectByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

selectList
根据Wrapper条件 查询所有记录 如果想查询所有记录 直接null

    /**
     * 根据 entity 条件,查询全部记录
     *
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    List<T> selectList(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述

selectPage
根据entify条件查询数据 并进行分页 IPage里面封装了分页的API 当前页 总页数据…等

    /**
     * 根据 entity 条件,查询全部记录(并翻页)
     *
     * @param page         分页查询条件(可以为 RowBounds.DEFAULT)
     * @param queryWrapper 实体对象封装操作类(可以为 null)
     */
    IPage<T> selectPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

文章来源: blog.csdn.net,作者:陶然同学,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/weixin_45481821/article/details/121641321

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。