MyBatis-Plus的CRUD

MP:Mybatis-Plus

Mapper CRUD 接口

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

1.Insert

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

MyBatis-Plus的CRUD_第1张图片

INSERT INTO tb_user ( id, user_name, password, name, age, email ) VALUES ( ?, ?, ?, ?, ?, ? )

但是,id的值不正确,我们期望的是数据库自增长,实际是MP生成了id的值写入到了数据库。

1. 如何设置id的生成策略呢?

MP支持的id策略:
MyBatis-Plus的CRUD_第2张图片
MyBatis-Plus的CRUD_第3张图片

2. 如何解决对象属性与数据库字段不一致问题?

在MP中通过**@TableField**注解可以指定字段的一些属性,常常解决的问题有:

  1. 对象中的属性名和字段名不一致的问题(非驼峰)
  2. 对象中的属性字段在表中不存在的问题

MyBatis-Plus的CRUD_第4张图片

  1. 将对象属性不加入查询字段
    MyBatis-Plus的CRUD_第5张图片
    MyBatis-Plus的CRUD_第6张图片

2.Delete

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

MyBatis-Plus的CRUD_第7张图片

columnMap put进去了的column信息都会以and形式串起来删除

DELETE FROM tb_user WHERE name = ? AND age = ?

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

MyBatis-Plus的CRUD_第8张图片

DELETE FROM tb_user WHERE name=? AND age=?

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

MyBatis-Plus的CRUD_第9张图片

DELETE FROM tb_user WHERE id IN ( ? , ? , ? )

3.Update

在MP中,更新操作有2种,一种是根据id更新,另一种是根据条件更新

// 根据 ID 修改
int updateById(@Param(Constants.ENTITY) T entity);

MyBatis-Plus的CRUD_第10张图片

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

MyBatis-Plus的CRUD_第11张图片

UPDATE tb_user SET age=? WHERE id = ?

4.Select

包括根据id查询、批量查询、查询单条数据、查询列表、分页查询等操作。

// 根据 ID 查询
T selectById(Serializable id);
// 根据 entity 条件,查询一条记录
T selectOne(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

MyBatis-Plus的CRUD_第12张图片

// 查询(根据ID 批量查询)
List<T> selectBatchIds(@Param(Constants.COLLECTION) Collection<? extends Serializable> idList);

MyBatis-Plus的CRUD_第13张图片

SELECT id,user_name,password,name,age,email FROM tb_user WHERE id IN ( ? , ? , ? )

// 根据 entity 条件,查询全部记录
List<T> selectList(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

在这里插入图片描述
MyBatis-Plus的CRUD_第14张图片

SELECT id,user_name,password,name,age,email FROM tb_user WHERE age > ?

// 根据 Wrapper 条件,查询总记录数
Integer selectCount(@Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

MyBatis-Plus的CRUD_第15张图片
在这里插入图片描述

SELECT COUNT( 1 ) FROM tb_user WHERE age > ?

这里可以写 count()也可以count(1):Count(1)和Count()实际上的意思是,评估Count()中的表达式是否为NULL,如果为NULL则不计数,而非NULL则会计数。
MyBatis-Plus的CRUD_第16张图片

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

MyBatis-Plus的CRUD_第17张图片

SELECT id,user_name,password,name,age,email FROM tb_user WHERE age > ? LIMIT ?,?

// 查询(根据 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);

// 根据 Wrapper 条件,查询全部记录(并翻页)
IPage<Map<String, Object>> selectMapsPage(IPage<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper);

Service CRUD 接口

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

1.Save是插入

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

2.SaveOrUpdate 插入还是修改更新

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

MyBatis-Plus的CRUD_第18张图片

3.Remove是删除

// 根据 entity 条件,删除记录
boolean remove(Wrapper<T> queryWrapper);
// 根据 ID 删除
boolean removeById(Serializable id);
// 根据 columnMap 条件,删除记录
boolean removeByMap(Map<String, Object> columnMap);
// 删除(根据ID 批量删除)
boolean removeByIds(Collection<? extends Serializable> idList);

MyBatis-Plus的CRUD_第19张图片

4. Update是修改更新

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

5.Get是查询

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

6.List列表查询

// 查询所有
List<T> list();
// 查询列表
List<T> list(Wrapper<T> queryWrapper);
// 查询(根据ID 批量查询)
Collection<T> listByIds(Collection<? extends Serializable> idList);
// 查询(根据 columnMap 条件)
Collection<T> listByMap(Map<String, Object> columnMap);
// 查询所有列表
List<Map<String, Object>> listMaps();
// 查询列表
List<Map<String, Object>> listMaps(Wrapper<T> queryWrapper);

7.Page分页查询

// 无条件分页查询
//IPage	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);

8.Count查询数量

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

你可能感兴趣的:(SSM,java,intellij-idea)