值得收藏的Mybatis通用Mapper使用大全。

引言

 

由于小编的记性不太好,每次在写代码的时候总是把通用mapper的方法记错,所以今天把通用mapper的常用方法做一下总结,方便以后直接查看。好了,不废话啦。

 

引包

 


<dependency>
<groupId>tk.mybatisgroupId>
<artifactId>mapperartifactId>
<version>3.3.9version>
dependency>

 

引完包之后只需要将spring整合配置里面的mybatis的包名的org修改为tk即可使用

例如:

mybatis的包名:org.mybatis.spring.mapper.MapperScannerConfigurer。

通用mapper包名:tk.mybatis.spring.mapper.MapperScannerConfigurer

 class="tk.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="xxx.xxx"/>
bean>

 

select方法介绍

 

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

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

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

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

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

 

Insert方法介绍

 

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

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

 

Update方法介绍

 

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

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

 

Delete方法介绍

 

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

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

 

Example方法

 

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

方法:int selectCountByExample(Object example);
说明:根据Example条件进行查询总数

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

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

方法:int deleteByExample(Object example);
说明:根据Example条件删除数据
好了以上mybatis通用mapper的常用方法介绍完毕啦。希望对些记性不好的童靴有所帮助。

转载于:https://www.cnblogs.com/hulianwangjiagoushi/p/10690886.html

你可能感兴趣的:(值得收藏的Mybatis通用Mapper使用大全。)