java:mybatis:⼯具类example详解⼀、mapper接⼝中的⽅法解析
mapper接⼝中的部分常⽤⽅法及功能如下:
⽅法功能说明
int countByExample(UrExample example) thorws SQLException按条件计数
int deleteByPrimaryKey(Integer id) thorws SQLException按主键删除
int deleteByExample(UrExample example) thorws SQLException按条件删除
String/Integer inrt(Ur record) thorws SQLException插⼊数据(返回值为ID)
Ur lectByPrimaryKey(Integer id) thorws SQLException按主键查询
笔记本电脑型号在哪里看
ListlectByExample(UrExample example) thorws SQLException按条件查询
ListlectByExampleWithBLOGs(UrExample example) thorws SQLException 按条件查询(包括BLOB字段)。只有当数据表中的字段类型有为⼆进制的才会产⽣
公务员考试都考什么科目和内容
int updateByPrimaryKey(Ur record) thorws SQLException按主键更新
int updateByPrimaryKeySelective(Ur record) thorws SQLException按主键更新值不为null的字段
int updateByExample(Ur record, UrExample example) thorws
SQLException
按条件更新
int updateByExampleSelective(Ur record, UrExample example)
thorws SQLException
按条件更新值不为null的字段
⼆、Example类解析
mybatis的逆向⼯程中会⽣成实体类及实体类对应的example类,example类⽤于添加条件,相当where后⾯的部分。xxxExample example = new xxxExample();
Criteria criteria = new Example().createCriteria();
example类中的部分常⽤⽅法及功能如下:
⽅法功能说明
example.tOrderByClau(“字段名 ASC”);添加升序排列条件,DESC为降序
example.tDistinct(fal)去除重复,boolean型,true为选择不重复的记录criteria.andXxxIsNull添加字段xxx为null的条件
criteria.andXxxIsNotNull添加字段xxx不为null的条件
criteria.andXxxEqualTo(value)添加xxx字段等于value条件
criteria.andXxxNotEqualTo(value)添加xxx字段不等于value条件
criteria.andXxxGreaterThan(value)添加xxx字段⼤于value条件
criteria.andXxxGreaterThanOrEqualTo(value)添加xxx字段⼤于等于value条件
criteria.andXxxLessThan(value)添加xxx字段⼩于value条件
西红柿英语criteria.andXxxLessThanOrEqualTo(value)添加xxx字段⼩于等于value条件
伤心短句criteria.andXxxIn(List<?>)添加xxx字段值在List<?>条件
criteria.andXxxNotIn(List<?>)添加xxx字段值不在List<?>条件
criteria.andXxxLike(“%”+value+”%”)添加xxx字段值为value的模糊查询条件
criteria.andXxxNotLike(“%”+value+”%”)添加xxx字段值不为value的模糊查询条件
criteria.andXxxBetween(value1,value2)添加xxx字段值在value1和value2之间条件
criteria.andXxxBetween(value1,value2)添加xxx字段值在value1和value2之间条件
criteria.andXxxNotBetween(value1,value2)添加xxx字段值不在value1和value2之间条件
注:在mybatis逆向⼯程⽣成的⽂件XxxExample.java中包含⼀个static的内部类Criteria,Criteria中的⽅法是定义SQL 语句where后的查询条件。
三、总结
XxxExample.java只能实现简单条件增删改查,复杂的功能还需要⾃⼰编写sql代码来实现。
⼀、example类⼲什么⽤的?
理论上通过example类可以构造你想到的任何筛选条件。
例⼦是展⽰此类⽤法的最好⽅式.
Example类可以⽤来⽣成⼀个⼏乎⽆限的where⼦句.
可以让你不⽤再mybatis⾥写⼀⼤堆l⽂件
我使⽤的是Maven项⽬,所以导⼊Mapper的Maven依赖
<dependency>
<groupId&batis</groupId>
<artifactId>mapper</artifactId>
<version>3.2.0</version>
</dependency>
⼆、了解example成员变量
山西省招生考试信息网//升序还是降序
/
/参数格式:字段+空格+asc(desc)
protected String orderByClau;
//去除重复
//true是选择不重复记录
protected boolean distinct;
//⾃定义查询条件
//Criteria的集合,集合中对象是由or连接
protected List<Criteria> oredCriteria;
//内部类Criteria包含⼀个Cretiron的集合,
//每⼀个Criteria对象内包含的Cretiron之间
马车简笔画//是由AND连接的
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
//是mybatis中逆向⼯程中的代码模型
protected abstract static class GeneratedCriteria
{…..}
//是最基本,最底层的Where条件,⽤于字段级的筛选
public static class Criterion {……}
心情好的幽默句子
(greater than) - 指相关的列必须⼤于⽅法参数中的值
= (greater than or equal) - 指相关的列必须⼤于等于⽅法参数中的值
< (less than) - 指相关的列必须⼩于于⽅法参数中的值
<= (less than or equal) - 指相关的列必须⼩于等于⽅法参数中的值
LIKE - 指相关的列必须 “like” ⽅法参数中的值. 这个⽅法不⽤必须加⼊ ‘%’, 您必须设置⽅法参数中的值.
NOT LIKE - 指相关的列必须 “not like” ⽅法参数中的值. 这个⽅法不⽤必须加⼊ ‘%’, 您必须设置⽅法参数中的值. BETWEEN - 指相关的列必须在 “between” ⽅法参数中的两个值之间.
NOT BETWEEN - 指相关的列必须不在 “not between” ⽅法参数中的两个值之间.
IN - 指相关的列必须在传⼊的⽅法参数的list中.
NOT IN - 指相关的列必须不在传⼊的⽅法参数的list中.
Example example = new Example(ur.class);
for(int i=0;i < 10;i++) {
.andNotIn("status",Arrays.asList("0","1")) //注意⽤的是类中的属性,不是数据库中的属性
.andCondition("(FLAG <> '0' OR FLAG IS NULL)")
.andCondition("(role_nodecode is null or role_nodecode ='"+NextRoleNodeCode+"')");
example.lectProperties("rialNo", "roleCode", "employeeCode", "roleNodeCode");
example.tDistinct(true); // 去除重复,boolean型,true为选择不重复的记录。
example.tOrderByClau("SERIAL_NO desc"); // 对应表结构字段名称
// 排序另外写法
List<AfwFlowDtl> afwFlowDtlList = afwFlowDtlMapper.lectList(example);
example.clear();// 把条件清空,可以循环使⽤,嵌套在for循环⾥⾯使⽤
}
注:
这⾥⾯有⼀个坑,就是.andCondition("(role_nodecode is null or role_nodecode ='"+NextRoleNodeCode+"')");若是和⾯的参数role_nodecode是字符串类型,对应的value值 要加' '
>夜书所见叶绍翁