0


Mybatis-Plus CRUD

在这里插入图片描述

💗wei_shuo的个人主页

💫wei_shuo的学习社区

🌐Hello World !


Mybatis-Plus CRUD

  • 通用 Service CRUD 封装 IService 接口,进一步封装 CRUD 采用 get 查询remove 删除list 查询集合page 分页的前缀命名方式区分 Mapper 层避免混淆
  • 泛型 T 为任意实体对象
  • 如果自定义通用 Service 方法,可以创建自己的 IBaseService 继承 Mybatis-Plus 提供的基类IService
  • 对象 Wrapper 为 条件构造器

Service CRUD 接口

Save

类型参数名描述Tentity实体对象CollectionentityList实体对象集合intbatchSize插入批次数量

// 插入一条记录(选择字段,策略插入)booleansave(T entity);// 插入(批量)booleansaveBatch(Collection<T> entityList);// 插入(批量)booleansaveBatch(Collection<T> entityList,int batchSize);

SaveOrUpdate

类型参数名描述Tentity实体对象WrapperupdateWrapper实体对象封装操作类 UpdateWrapperCollectionentityList实体对象集合intbatchSize插入批次数量

// TableId 注解存在更新记录,是否插入一条记录booleansaveOrUpdate(T entity);// 根据updateWrapper尝试更新,是否继续执行saveOrUpdate(T)方法booleansaveOrUpdate(T entity,Wrapper<T> updateWrapper);// 批量修改插入booleansaveOrUpdateBatch(Collection<T> entityList);// 批量修改插入booleansaveOrUpdateBatch(Collection<T> entityList,int batchSize);

Remove

类型参数名描述WrapperqueryWrapper实体包装类 QueryWrapperSerializableid主键 IDMap<String, Object>columnMap表字段 map 对象Collection<? extends Serializable>idList主键 ID 列表

// 根据 UpdateWrapper 条件,更新记录 需要设置sqlsetbooleanupdate(Wrapper<T> updateWrapper);// 根据 whereWrapper 条件,更新记录booleanupdate(T updateEntity,Wrapper<T> whereWrapper);// 根据 ID 选择修改booleanupdateById(T entity);// 根据ID 批量更新booleanupdateBatchById(Collection<T> entityList);// 根据ID 批量更新booleanupdateBatchById(Collection<T> entityList,int batchSize);

Update

类型参数名描述WrapperupdateWrapper实体对象封装操作类 UpdateWrapperTentity实体对象CollectionentityList实体对象集合intbatchSize更新批次数量

// 根据 UpdateWrapper 条件,更新记录 需要设置sqlsetbooleanupdate(Wrapper<T> updateWrapper);// 根据 whereWrapper 条件,更新记录booleanupdate(T updateEntity,Wrapper<T> whereWrapper);// 根据 ID 选择修改booleanupdateById(T entity);// 根据ID 批量更新booleanupdateBatchById(Collection<T> entityList);// 根据ID 批量更新booleanupdateBatchById(Collection<T> entityList,int batchSize);

Get

类型参数名描述Serializableid主键 IDWrapperqueryWrapper实体对象封装操作类 QueryWrapperbooleanthrowEx有多个 result 是否抛出异常Tentity实体对象Function<? super Object, V>mapper转换函数

// 根据 ID 查询TgetById(Serializable id);// 根据 Wrapper,查询一条记录。结果集,如果是多个会抛出异常,随机取一条加上限制条件 wrapper.last("LIMIT 1")TgetOne(Wrapper<T> queryWrapper);// 根据 Wrapper,查询一条记录TgetOne(Wrapper<T> queryWrapper,boolean throwEx);// 根据 Wrapper,查询一条记录Map<String,Object>getMap(Wrapper<T> queryWrapper);// 根据 Wrapper,查询一条记录<V>VgetObj(Wrapper<T> queryWrapper,Function<?superObject,V> mapper);

List

类型参数名描述WrapperqueryWrapper实体对象封装操作类 QueryWrapperCollection<? extends Serializable>idList主键 ID 列表Map<String, Object>columnMap表字段 map 对象Function<? super Object, V>mapper转换函数

// 查询所有List<T>list();// 查询列表List<T>list(Wrapper<T> queryWrapper);// 查询(根据ID 批量查询)Collection<T>listByIds(Collection<?extendsSerializable> idList);// 查询(根据 columnMap 条件)Collection<T>listByMap(Map<String,Object> columnMap);// 查询所有列表List<Map<String,Object>>listMaps();// 查询列表List<Map<String,Object>>listMaps(Wrapper<T> queryWrapper);// 查询全部记录List<Object>listObjs();// 查询全部记录<V>List<V>listObjs(Function<?superObject,V> mapper);// 根据 Wrapper 条件,查询全部记录List<Object>listObjs(Wrapper<T> queryWrapper);// 根据 Wrapper 条件,查询全部记录<V>List<V>listObjs(Wrapper<T> queryWrapper,Function<?superObject,V> mapper);

Page

IPagepage翻页对象WrapperqueryWrapper实体对象封装操作类 QueryWrapper

// 无条件分页查询IPage<T>page(IPage<T> page);// 条件分页查询IPage<T>page(IPage<T> page,Wrapper<T> queryWrapper);// 无条件分页查询IPage<Map<String,Object>>pageMaps(IPage<T> page);// 条件分页查询IPage<Map<String,Object>>pageMaps(IPage<T> page,Wrapper<T> queryWrapper);

Count

类型参数名描述WrapperqueryWrapper实体对象封装操作类 QueryWrapper

// 查询总记录数intcount();// 根据 Wrapper 条件,查询总记录数intcount(Wrapper<T> queryWrapper);

Chain

query
// 链式查询 普通QueryChainWrapper<T>query();// 链式查询 lambda 式。注意:不支持 KotlinLambdaQueryChainWrapper<T>lambdaQuery();// 示例:query().eq("column", value).one();lambdaQuery().eq(Entity::getId, value).list();
update
// 链式更改 普通UpdateChainWrapper<T>update();// 链式更改 lambda 式。注意:不支持 KotlinLambdaUpdateChainWrapper<T>lambdaUpdate();// 示例:update().eq("column", value).remove();lambdaUpdate().eq(Entity::getId, value).update(entity);

Mapper CRUD 接口

  • 通用 CRUD 封装 BaseMapper 接口,为 Mybatis-Plus 启动时自动解析实体表关系映射转换为 Mybatis 内部对象注入容器
  • 泛型 T 为任意实体对象
  • 参数 Serializable 为任意类型主键 Mybatis-Plus 不推荐使用复合主键,约定每一张表,都有自己的唯一 id 主键
  • 对象 Wrapper 为 条件构造器

Insert

类型参数名描述Tentity实体对象

// 插入一条记录intinsert(T entity);

Delete

类型参数名描述Wrapperwrapper实体对象封装操作类(可以为 null)Collection<? extends Serializable>idList主键 ID 列表(不能为 null 以及 empty)Serializableid主键 IDMap<String, Object>columnMap表字段 map 对象

// 根据 entity 条件,删除记录intdelete(@Param(Constants.WRAPPER)Wrapper<T> wrapper);// 删除(根据ID 批量删除)intdeleteBatchIds(@Param(Constants.COLLECTION)Collection<?extendsSerializable> idList);// 根据 ID 删除intdeleteById(Serializable id);// 根据 columnMap 条件,删除记录intdeleteByMap(@Param(Constants.COLUMN_MAP)Map<String,Object> columnMap);

Update

类型参数名描述Tentity实体对象 (set 条件值,可为 null)WrapperupdateWrapper实体对象封装操作类(可以为 null,里面的 entity 用于生成 where 语句)

调用

updateById

方法前,需要在

T entity

(对应的实体类)中的主键属性上加上

@TableId

注解

// 根据 whereWrapper 条件,更新记录intupdate(@Param(Constants.ENTITY)T updateEntity,@Param(Constants.WRAPPER)Wrapper<T> whereWrapper);// 根据 ID 修改intupdateById(@Param(Constants.ENTITY)T entity);

Select

类型参数名描述Serializableid主键 IDWrapperqueryWrapper实体对象封装操作类(可以为 null)Collection<? extends Serializable>idList主键 ID 列表(不能为 null 以及 empty)Map<String, Object>columnMap表字段 map 对象IPagepage分页查询条件(可以为 RowBounds.DEFAULT)

// 根据 ID 查询TselectById(Serializable id);// 根据 entity 条件,查询一条记录TselectOne(@Param(Constants.WRAPPER)Wrapper<T> queryWrapper);// 查询(根据ID 批量查询)List<T>selectBatchIds(@Param(Constants.COLLECTION)Collection<?extendsSerializable> idList);// 根据 entity 条件,查询全部记录List<T>selectList(@Param(Constants.WRAPPER)Wrapper<T> queryWrapper);// 查询(根据 columnMap 条件)List<T>selectByMap(@Param(Constants.COLUMN_MAP)Map<String,Object> columnMap);// 根据 Wrapper 条件,查询全部记录List<Map<String,Object>>selectMaps(@Param(Constants.WRAPPER)Wrapper<T> queryWrapper);// 根据 Wrapper 条件,查询全部记录。注意: 只返回第一个字段的值List<Object>selectObjs(@Param(Constants.WRAPPER)Wrapper<T> queryWrapper);// 根据 entity 条件,查询全部记录(并翻页)IPage<T>selectPage(IPage<T> page,@Param(Constants.WRAPPER)Wrapper<T> queryWrapper);// 根据 Wrapper 条件,查询全部记录(并翻页)IPage<Map<String,Object>>selectMapsPage(IPage<T> page,@Param(Constants.WRAPPER)Wrapper<T> queryWrapper);// 根据 Wrapper 条件,查询总记录数IntegerselectCount(@Param(Constants.WRAPPER)Wrapper<T> queryWrapper);

🌼 结语:创作不易,如果觉得博主的文章赏心悦目,还请——

点赞

👍

收藏

⭐️

评论

📝


在这里插入图片描述

标签: mybatis

本文转载自: https://blog.csdn.net/weixin_62765017/article/details/131635452
版权归原作者 wei_shuo 所有, 如有侵权,请联系我们删除。

“Mybatis-Plus CRUD”的评论:

还没有评论