Service CRUD 接口
说明:
- 通用 Service CRUD 封装IService(opens new window)接口,进一步封装 CRUD 采用 get 查询单行 remove 删除 list 查询集合 page 分页 前缀命名方式区分 Mapper 层避免混淆,
- 泛型 T 为任意实体对象
- 建议如果存在自定义通用 Service 方法的可能,请创建自己的 IBaseService 继承 Mybatis-Plus 提供的基类
- 对象 Wrapper 为 条件构造器
Save
boolean save(T entity);
boolean saveBatch(Collection<T> entityList);
boolean saveBatch(Collection<T> entityList, int batchSize);
参数说明
类型 |
参数名 |
描述 |
T |
entity |
实体对象 |
Collection<T> |
entityList |
实体对象集合 |
int |
batchSize |
插入批次数量 |
SaveOrUpdate
boolean saveOrUpdate(T entity);
boolean saveOrUpdate(T entity, Wrapper<T> updateWrapper);
boolean saveOrUpdateBatch(Collection<T> entityList);
boolean saveOrUpdateBatch(Collection<T> entityList, int batchSize);
参数说明
类型 |
参数名 |
描述 |
T |
entity |
实体对象 |
Wrapper<T> |
updateWrapper |
实体对象封装操作类 UpdateWrapper |
Collection<T> |
entityList |
实体对象集合 |
int |
batchSize |
插入批次数量 |
Remove
boolean remove(Wrapper<T> queryWrapper);
boolean removeById(Serializable id);
boolean removeByMap(Map<String, Object> columnMap);
boolean removeByIds(Collection<? extends Serializable> idList);
参数说明
类型 |
参数名 |
描述 |
Wrapper<T> |
queryWrapper |
实体包装类 QueryWrapper |
Serializable |
id |
主键 ID |
Map<String, Object> |
columnMap |
表字段 map 对象 |
Collection<? extends Serializable> |
idList |
主键 ID 列表 |
Update
boolean update(Wrapper<T> updateWrapper);
boolean update(T updateEntity, Wrapper<T> whereWrapper);
boolean updateById(T entity);
boolean updateBatchById(Collection<T> entityList);
boolean updateBatchById(Collection<T> entityList, int batchSize);
参数说明
类型 |
参数名 |
描述 |
Wrapper<T> |
updateWrapper |
实体对象封装操作类 UpdateWrapper |
T |
entity |
实体对象 |
Collection<T> |
entityList |
实体对象集合 |
int |
batchSize |
更新批次数量 |
Get
T getById(Serializable id);
T getOne(Wrapper<T> queryWrapper);
T getOne(Wrapper<T> queryWrapper, boolean throwEx);
Map<String, Object> getMap(Wrapper<T> queryWrapper);
<V> V getObj(Wrapper<T> queryWrapper, Function<? super Object, V> mapper);
参数说明
类型 |
参数名 |
描述 |
Serializable |
id |
主键 ID |
Wrapper<T> |
queryWrapper |
实体对象封装操作类 QueryWrapper |
boolean |
throwEx |
有多个 result 是否抛出异常 |
T |
entity |
实体对象 |
Function<? super Object, V> |
mapper |
转换函数 |
List
List<T> list();
List<T> list(Wrapper<T> queryWrapper);
Collection<T> listByIds(Collection<? extends Serializable> idList);
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<? super Object, V> mapper);
List<Object> listObjs(Wrapper<T> queryWrapper);
<V> List<V> listObjs(Wrapper<T> queryWrapper, Function<? super Object, V> mapper);
参数说明
类型 |
参数名 |
描述 |
Wrapper<T> |
queryWrapper |
实体对象封装操作类 QueryWrapper |
Collection<? extends Serializable> |
idList |
主键 ID 列表 |
Map<String, Object> |
columnMap |
表字段 map 对象 |
Function<? super Object, V> |
mapper |
转换函数 |
Page
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);
参数说明
类型 |
参数名 |
描述 |
IPage<T> |
page |
翻页对象 |
Wrapper<T> |
queryWrapper |
实体对象封装操作类 QueryWrapper |
Count
int count();
int count(Wrapper<T> queryWrapper);
参数说明
类型 |
参数名 |
描述 |
Wrapper<T> |
queryWrapper |
实体对象封装操作类 QueryWrapper |
Chain
query
QueryChainWrapper<T> query();
LambdaQueryChainWrapper<T> lambdaQuery();
query().eq("column", value).one();
lambdaQuery().eq(Entity::getId, value).list();
update
UpdateChainWrapper<T> update();
LambdaUpdateChainWrapper<T> lambdaUpdate();
update().eq("column", value).remove();
lambdaUpdate().eq(Entity::getId, value).update(entity);
Mapper CRUD 接口
说明:
- 通用 CRUD 封装BaseMapper(opens new window)接口,为 Mybatis-Plus 启动时自动解析实体表关系映射转换为 Mybatis 内部对象注入容器
- 泛型 T 为任意实体对象
- 参数 Serializable 为任意类型主键 Mybatis-Plus 不推荐使用复合主键约定每一张表都有自己的唯一 id 主键
- 对象 Wrapper 为 条件构造器
Insert
int insert(T entity);
参数说明
Delete
int delete(@Param(Constants.WRAPPER) Wrapper<T> wrapper);
int deleteBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);
int deleteById(Serializable id);
int deleteByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);
参数说明
类型 |
参数名 |
描述 |
Wrapper<T> |
wrapper |
实体对象封装操作类(可以为 null) |
Collection<? extends Serializable> |
idList |
主键 ID 列表(不能为 null 以及 empty) |
Serializable |
id |
主键 ID |
Map<String, Object> |
columnMap |
表字段 map 对象 |
Update
int update(@Param(Constants.ENTITY) T updateEntity, @Param(Constants.WRAPPER) Wrapper<T> whereWrapper);
int updateById(@Param(Constants.ENTITY) T entity);
参数说明
类型 |
参数名 |
描述 |
T |
entity |
实体对象 (set 条件值,可为 null) |
Wrapper<T> |
updateWrapper |
实体对象封装操作类(可以为 null,里面的 entity 用于生成 where 语句) |
Select
T selectById(Serializable id);
T selectOne(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
List<T> selectBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);
List<T> selectList(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
List<T> selectByMap(@Param(Constants.COLUMN_MAP) Map<String, Object> columnMap);
List<Map<String, Object>> selectMaps(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
List<Object> selectObjs(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
IPage<T> selectPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
IPage<Map<String, Object>> selectMapsPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
Integer selectCount(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);
参数说明
类型 |
参数名 |
描述 |
Serializable |
id |
主键 ID |
Wrapper<T> |
queryWrapper |
实体对象封装操作类(可以为 null) |
Collection<? extends Serializable> |
idList |
主键 ID 列表(不能为 null 以及 empty) |
Map<String, Object> |
columnMap |
表字段 map 对象 |
IPage<T> |
page |
分页查询条件(可以为 RowBounds.DEFAULT) |
mapper 层 选装件
说明:
选装件位于 com.baomidou.mybatisplus.extension.injector.methods
包下 需要配合Sql 注入器使用,案例(opens new window)
使用详细见源码注释(opens new window)
int alwaysUpdateSomeColumnById(T entity);
int insertBatchSomeColumn(List<T> entityList);
int logicDeleteByIdWithFill(T entity);
ActiveRecord 模式
说明:
- 实体类只需继承 Model 类即可进行强大的 CRUD 操作
- 需要项目中已注入对应实体的BaseMapper
操作步骤:
class User extends Model<User>{
}
User user = new User();
user.insert();
user.selectAll();
user.updateById();
user.deleteById();
SimpleQuery 工具类
说明:
- 对selectList查询后的结果用Stream流进行了一些封装,使其可以返回一些指定结果,简洁了api的调用
- 需要项目中已注入对应实体的BaseMapper
- 使用方式见: 测试用例(opens new window)
- 对于下方参数peeks,其类型为Consumer...,可一直往后叠加操作例如:List
<Long>
ids = SimpleQuery.list(Wrappers.lambdaQuery(), Entity::getId, System.out::println, user ->` userNames.add(user.getName()));
keyMap
Map<A, E> keyMap(LambdaQueryWrapper<E> wrapper, SFunction<E, A> sFunction, Consumer<E>... peeks);
Map<A, E> keyMap(LambdaQueryWrapper<E> wrapper, SFunction<E, A> sFunction, boolean isParallel, Consumer<E>... peeks);
参数说明
类型 |
参数名 |
描述 |
E |
entity |
实体对象 |
A |
attribute |
实体属性类型,也是map中key的类型 |
LambdaQueryWrapper<E> |
wrapper |
支持lambda的条件构造器 |
SFunction<E, A> |
sFunction |
实体中属性的getter,用于封装后map中作为key的条件 |
boolean |
isParallel |
为true时底层使用并行流执行 |
Consumer<E>... |
peeks |
可叠加的后续操作 |
map
Map<A, P> map(LambdaQueryWrapper<E> wrapper, SFunction<E, A> keyFunc, SFunction<E, P> valueFunc, Consumer<E>... peeks);
Map<A, P> map(LambdaQueryWrapper<E> wrapper, SFunction<E, A> keyFunc, SFunction<E, P> valueFunc, boolean isParallel, Consumer<E>... peeks);
参数说明
类型 |
参数名 |
描述 |
E |
entity |
实体对象 |
A |
attribute |
实体属性类型,也是map中key的类型 |
P |
attribute |
实体属性类型,也是map中value的类型 |
LambdaQueryWrapper<E> |
wrapper |
支持lambda的条件构造器 |
SFunction<E, A> |
keyFunc |
封装后map中作为key的条件 |
SFunction<E, P> |
valueFunc |
封装后map中作为value的条件 |
boolean |
isParallel |
为true时底层使用并行流执行 |
Consumer<E>... |
peeks |
可叠加的后续操作 |
group
Map<K, List<T>> group(LambdaQueryWrapper<T> wrapper, SFunction<T, A> sFunction, Consumer<T>... peeks);
Map<K, List<T>> group(LambdaQueryWrapper<T> wrapper, SFunction<T, K> sFunction, boolean isParallel, Consumer<T>... peeks);
M group(LambdaQueryWrapper<T> wrapper, SFunction<T, K> sFunction, Collector<? super T, A, D> downstream, Consumer<T>... peeks);
M group(LambdaQueryWrapper<T> wrapper, SFunction<T, K> sFunction, Collector<? super T, A, D> downstream, boolean isParallel, Consumer<T>... peeks);
参数说明
类型 |
参数名 |
描述 |
T |
entity |
实体对象 |
K |
attribute |
实体属性类型,也是map中key的类型 |
D |
- |
下游收集器返回类型,也是map中value的类型 |
A |
- |
下游操作中间类型 |
M |
- |
最终结束返回的Map<K, D> |
LambdaQueryWrapper<E> |
wrapper |
支持lambda的条件构造器 |
SFunction<E, A> |
sFunction |
分组依据,封装后map中作为key的条件 |
Collector<T, A, D> |
downstream |
下游收集器 |
boolean |
isParallel |
为true时底层使用并行流执行 |
Consumer<T>... |
peeks |
可叠加的后续操作 |
list
List<A> list(LambdaQueryWrapper<E> wrapper, SFunction<E, A> sFunction, Consumer<E>... peeks);
List<A> list(LambdaQueryWrapper<E> wrapper, SFunction<E, A> sFunction, boolean isParallel, Consumer<E>... peeks);
参数说明
类型 |
参数名 |
描述 |
E |
entity |
实体对象 |
A |
attribute |
实体属性类型,也是list中元素的类型 |
LambdaQueryWrapper<E> |
wrapper |
支持lambda的条件构造器 |
SFunction<E, A> |
sFunction |
封装后list中的元素 |
boolean |
isParallel |
为true时底层使用并行流执行 |
Consumer<E>... |
peeks |
可叠加的后续操作 |
版权声明:「DDKK.COM 弟弟快看,程序员编程资料站」本站文章,版权归原作者所有
来源:MyBatis-Plus | https://baomidou.com