通用mapper

通用mapper

核心包

<dependency>
    <groupId>tk.mybatis</groupId>
    <artifactId>mapper-core</artifactId>
    <version>1.1.5</version>
</dependency>

<dependency>
    <groupId>tk.mybatis</groupId>
    <artifactId>mapper-extra</artifactId>
    <version>1.1.5</version>
</dependency>

<dependency>
    <groupId>tk.mybatis</groupId>
    <artifactId>mapper-base</artifactId>
    <version>1.1.5</version>
</dependency>

规则

  • 表名默认使用类名,驼峰转下划线(只对大写字母进行处理),如UserInfo默认对应的表名为user_info。
  • 表名可以使用@Table(name = “tableName”)进行指定,对不符合第一条默认规则的可以通过这种方式指定表名。
  • 字段默认和@Column一样,都会作为表字段,表字段默认为Java对象的Field名字驼峰转下划线形式。
  • 可以使用@Column(name = “fieldName”)指定不符合第3条规则的字段名。
  • 使用@Transient注解可以忽略字段,添加该注解的字段不会作为表字段使用。
  • 建议一定是有一个@Id注解作为主键的字段,可以有多个@Id注解的字段作为联合主键。

特殊方法

public void testSelectCount() {
    System.out.println(userMapper.selectCount(null));//没有查询条件就全查
}

基础接口

Select

接口:SelectMapper<T>
方法:List<T> select(T record);
说明:根据实体中的属性值进行查询,查询条件使用等号

接口:SelectByPrimaryKeyMapper<T>
方法:T selectByPrimaryKey(Object key);
说明:根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号

接口:SelectAllMapper<T>
方法:List<T> selectAll();
说明:查询全部结果,select(null)方法能达到同样的效果

接口:SelectOneMapper<T>
方法:T selectOne(T record);
说明:根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异常,查询条件使用等号

接口:SelectCountMapper<T>
方法:int selectCount(T record);
说明:根据实体中的属性查询总数,查询条件使用等号

Insert

接口:InsertMapper<T>
方法:int insert(T record);
说明:保存一个实体,null的属性也会保存,不会使用数据库默认值

接口:InsertSelectiveMapper<T>
方法:int insertSelective(T record);
说明:保存一个实体,null的属性不会保存,会使用数据库默认值

Update

接口:UpdateByPrimaryKeyMapper<T>
方法:int updateByPrimaryKey(T record);
说明:根据主键更新实体全部字段,null值会被更新

接口:UpdateByPrimaryKeySelectiveMapper<T>
方法:int updateByPrimaryKeySelective(T record);
说明:根据主键更新属性不为null的值

Delete

接口:DeleteMapper<T>
方法:int delete(T record);
说明:根据实体属性作为条件进行删除,查询条件使用等号

接口:DeleteByPrimaryKeyMapper<T>
方法:int deleteByPrimaryKey(Object key);
说明:根据主键字段进行删除,方法参数必须包含完整的主键属性

base组合接口

接口:BaseSelectMapper<T>
方法:包含上面Select的4个方法

接口:BaseInsertMapper<T>
方法:包含上面Insert的2个方法

接口:BaseUpdateMapper<T>
方法:包含上面Update的2个方法

接口:BaseDeleteMapper<T>
方法:包含上面Delete的2个方法

CRUD组合接口

接口:BaseMapper<T>
方法:继承了base组合接口中的4个组合接口,包含完整的CRUD方法

高级接口

批量插入数据

接口:InsertListMapper<T>

方法:int insertList(List<? extends T> recordList)

说明:传入集合,将代替传统的循环插入,提高效率,成功返回1,失败返回0

重点:这个接口是tk.mybatis.mapper.additional.insert包下的,此包下的这个方法没有主键策略,需要自己 提前设置好主键,生成的sql语句如下,oracle并不支持下面的插入sql语句

insert into table_name ("id", "name") values(1, "zhangsan"), (2, "lisi"), (3, "wangwu");

tk.mybatis.mapper.common.special包下,还有一个此方法,也是批量插入,但是此方法存在主键 策 略,但是,集合的批量插入主键是不回显的。

当一个接口继承了其它通用mapper接口时,需要在此接口上@tk.mybatis.mapper.annotation.RegisterMapper注解。例如:

@RegisterMapper
public interface ITotalMapper<T, K> extends BaseMapper<T>, ExampleMapper<T>, InsertListMapper<T>, IdListMapper<T, K> {
}

批量查询数据

在这里插入图片描述

接口: SelectByIdListMapper<T, PK>

方法: List<T> selectByIdList(@Param("idList") List<PK> idList)

说明: 根据集合查询记录,集合里存放的是主键

批量删除数据

接口:DeleteByIdListMapper<T, PK>

方法:int deleteByIdList(@Param("idList") List<PK> idList)

说明:根据主键的集合删除记录,成功返回 1,失败返回 0

Example方法

接口:SelectByExampleMapper<T>
方法:List<T> selectByExample(Object example);
说明:根据Example条件进行查询
**重点:**这个查询支持通过Example类指定查询列,通过selectProperties方法指定查询列

接口:SelectCountByExampleMapper<T>
方法:int selectCountByExample(Object example);
说明:根据Example条件进行查询总数

接口:SelectOneByExampleMapper

方法:T selectOneByExample(Object example)

说明:根据Example条件查询满足条件的一条记录

接口:UpdateByExampleMapper<T>
方法:int updateByExample(@Param("record") T record, @Param("example") Object example);
说明:根据Example条件更新实体record包含的全部属性,null值会被更新

接口:UpdateByExampleSelectiveMapper<T>
方法:int updateByExampleSelective(@Param("record") T record, @Param("example") Object example);
说明:根据Example条件更新实体record包含的不是null的属性值

接口:DeleteByExampleMapper<T>
方法:int deleteByExample(Object example);
说明:根据Example条件删除数据

例子

public void testSelectByExampleOr(){
    //条件的组合工具
    Example example = new Example(User.class);
    //条件,一个criteria中可以组合无数个条件,但是这些条件都是and关系
    Example.Criteria criteria = example.createCriteria();
    criteria.andEqualTo("sex","1");
    Example.Criteria criteria1 = example.createCriteria();
    criteria1.andLike("name","%李%");
    //直接使用example的or方法使得第二个条件和原来的条件组合or关系
    example.or(criteria1);
    System.out.println(userMapper.selectByExample(example));
}

Example组合接口

接口:ExampleMapper<T>
方法:包含上面Example中的5个方法

主键策略

MYSQL使用主键自增

@Id
@KeySql(useGeneratedKeys = true)
private Long id;@Id
@GeneratedValue(generator = "JDBC")
private Long id;

oracle使用序列自增

@Id
@KeySql(sql = "select SEQ_ID.nextval from dual", order = ORDER.BEFORE)   //begore就是在插入前回显
private Integer id;@Id
@GeneratedValue(
  strategy = GenerationType.IDENTITY,
  generator = "select SEQ_ID.nextval from dual")
private Integer id;

不推荐第二种方式,使用 @GeneratedValue 时也要配置一个 ORDER 全局参数

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值