MyBatis Example查询封装

功能说明

平台生成的业务对象对应的Mybatis文件:
QQ截图20201218135137
Eg:
BasItem.java->BasItemMapper.xml->BasItemMapper.java->BasItemExample.java->BasItemService.java->BasItemServiceImpl.java

范例说明

  1. Mybatis查询:以BasItem对象为例### 1. example.and()—– 最外面连接符为 and 多个condition的连接符为 and
    //创建 example
    BasItemExample example = BasItemExample.create();
    //排序字段
    example.setOrderByClause(” ITEM_CODE , CREATE_TIME”);
    //查询条件 1、添加条件 ITEM_NAME=’电视机’
    example.and().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
    //2、添加条件 CREATOR=’linjx’
    .andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
    //example 查询
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? and CREATOR = ?) order by ITEM_CODE, CREATE_TIME
    ==> Parameters: 电视机(String), linjx(String)
  2. example.andOr() —– 最外面连接符为 and 多个condition的连接符为 or
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件
    example.andOr().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
    .andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
    //example 查询
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? OR CREATOR = ?)
    ==> Parameters: 电视机(String), linjx(String)
  3. example.or() orAnd() —– 最外面连接符为 or多个condition的连接符为 and
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件
    example.or().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
    .andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
    //example 查询
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? And CREATOR = ?)
    ==> Parameters: 电视机(String), linjx(String)
    由于代码上用or()加了2个条件,但是在or()添加条件之前example内不存在其他条件所以 最外面的连接符被系统去掉.
    //创建 example
    BasItemExample example = BasItemExample.create();
    //条件 ITEM_NAME=‘电视机’ and CREATOR=‘linjx’ or ITEM_NAME=‘BOOK’
    example.and().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
    .andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
    example.or(). andCreateCondition(“ITEM_NAME”, Operation.EQ, “book”)
    //example 查询
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? And CREATOR = ?) or (ITEM_NAME=?)
    ==> Parameters: 电视机(String), linjx(String) , 衣服(String)
    由于Example的方式并不能完全满足复杂SQL查询,所以平台扩展了高级拼接查询语句.
  4. 不带参数的查询
    example = BasItemExample.create();
    //查询条件
    example.and().andCreateCondition(” ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code is not null)”);
    //example 查询
    basItems = basItemService.find(example);

//SQL: select * from BAS_ITEM WHERE ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code is not null)

  1. 带参数的查询
    example = BasItemExample.create();
    //查询条件
    String sqlCondition = ” ITEM_NAME=?”

+ “ and ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code in(?,?,?))”; //in 语句知道了列表个数
sqlCondition += ” or (ITEM_NAME is not null and BAR_CODE is not null and ITEM_NAME like ?)”;
List values = Lists.newArrayList();
values.add(“电视机”);
values.add(“0001”);
values.add(“0002”);
values.add(“0003”);
values.add(“%1%”);
example.and().andCreateCondition(sqlCondition,values);
//example 查询
basItems = basItemService.find(example);
example = BasItemExample.create();
//查询条件
String sqlCondition = ” ITEM_NAME=?”
+ “ and ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code in(?))”; //in语句只用单个匹配符
sqlCondition += ” or (ITEM_NAME is not null and BAR_CODE is not null and ITEM_NAME like ?)”;
List values = Lists.newArrayList();
values.add(“电视机”);
List barCodes = Lists.newArrayList();
barCodes.add(“0001”);
barCodes.add(“0002”);
barCodes.add(“0003”);
values.add(barCodes);
values.add(“%1%”);
example.and().andCreateCondition(sqlCondition,values);
basItems = basItemService.find(example);
example = BasItemExample.create();
//查询条件
String sqlCondition = ” ITEM_NAME=?”
+ “ and ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code in(?))”; //in语句只用单个匹配符
sqlCondition += ” or (ITEM_NAME is not null and BAR_CODE is not null and ITEM_NAME like ?)”;
List values = Lists.newArrayList();
values.add(“电视机”);
values.add(new String[] {“0001″,”0002″,”0003”});
values.add(“%1%”);
example.and().andCreateCondition(sqlCondition,values);
basItems = basItemService.find(example);
6. EQ操作符 (等于) 排序
//创建 example
BasItemExample example = BasItemExample.create();
//排序字段
example.setOrderByClause(” ITEM_CODE , CREATE_TIME”);
//查询条件 1、添加条件 ITEM_NAME=’电视机’
example.and().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
//2、添加条件 CREATOR=’linjx’
.andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
//example 查询
List basItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? and CREATOR = ?) order by ITEM_CODE, CREATE_TIME
==> Parameters: 电视机(String), linjx(String)
//条件查询添加可以使用
example.and().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”);

也可以使用:
example.and().andItemNameEqualTo(“电视机”);

以上2行代码一样的效果。

第2行代码是mybatis代码生成器默认的添加条件的方法,
第1行代码是平台扩展的方法。
7. EQIC操作符

//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME<>’电视机’
example.and().andCreateCondition(“ITEM_NAME”, Operation.EQIC, “book”);
//example 查询
List basItems = basItemService.find(example);

//SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) = ?)
==> Parameters: BOOK(String)

和 EQ操作符不一样的是 EQIC 操作符 忽略大小写.
8. NOTEQ操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME<>’电视机’
example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTEQ, “电视机”);
//example 查询
List basItems = basItemService.find(example);

//SQL: select * from BAS_ITEM WHERE (ITEM_NAME =<>?) order by ITEM_CODE, CREATE_TIME
==> Parameters: 电视机(String)

  1. IN操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 ITEM_NAME in(‘book‘,’good’,’bad’ )
    example.and().andCreateCondition(“ITEM_NAME”, Operation.IN,”book”,”good”,”bad”);
    或:
    Object[] itemNames = {“book”,”good”,”bad”};
    example.and().andCreateCondition(“ITEM_NAME”, Operation.IN,itemNames);
    或:
    List names = Lists.newArrayList();
    names.add(“book”);names.add(“good”);names.add(“bad”);
    example.and().andCreateCondition(“ITEM_NAME”, Operation.IN,names);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME in(?,?,?))
    ==> Parameters: book(String), good(String), bad(String)
  2. NOTIN操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 ITEM_NAME in(‘book‘,’good’,’bad’ )
    example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTIN,”book”,”good”,”bad”);
    或:
    Object[] itemNames = {“book”,”good”,”bad”};
    example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTIN,itemNames);
    或:List names = Lists.newArrayList();
    names.add(“book”);names.add(“good”);names.add(“bad”);
    example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTIN,names);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME not in(?,?,?))
    ==> Parameters: book(String), good(String), bad(String)
  3. ISNULL操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 ITEM_NAME is null
    example.and().andCreateCondition(“ITEM_NAME”, Operation.ISNULL);
    //example 查询
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME is null)
  4. ISNOTNULL操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 ITEM_NAME is null
    example.and().andCreateCondition(“ITEM_NAME”, Operation. ISNOTNULL);
    //example 查询
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME is not null)
  5. LIKE操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 ITEM_NAME like ‘%bo%’
    example.and().andCreateCondition(“ITEM_NAME”, Operation.LIKE, “bo”);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME like ?)
    ==> Parameters: %bo% (String)
  6. LIKEIC操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 upper(ITEM_NAME) like ‘%BO%’
    example.and().andCreateCondition(“ITEM_NAME”, Operation. LIKEIC);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
    ==> Parameters: %BO% (String)
  7. LIKE_START操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 ITEM_NAME like ‘%bo’
    example.and().andCreateCondition(“ITEM_NAME”, Operation.LIKE_START, “bo”);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME like ?)
    ==> Parameters: %bo (String)
  8. LIKE_START_IC操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 upper(ITEM_NAME) like ‘%BO’
    example.and().andCreateCondition(“ITEM_NAME”, Operation. LIKE_START_IC);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
    ==> Parameters: %BO (String)
  9. LIKE_END操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 ITEM_NAME like ‘bo%’
    example.and().andCreateCondition(“ITEM_NAME”, Operation.LIKE_END, “bo”);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (ITEM_NAME like ?)
    ==> Parameters: bo% (String)
  10. LIKE_END_IC操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 upper(ITEM_NAME) like ‘BO%’
    example.and().andCreateCondition(“ITEM_NAME”, Operation. LIKE_START_IC);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
    ==> Parameters: %BO (String)
  11. GT操作符 (大于)
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 INBOUND_QC_QTY > 12
    example.and().andCreateCondition(” INBOUND_QC_QTY “, Operation.GT, 12);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (INBOUND_QC_QTY >?)
    ==> Parameters: 12 (Integer)
  12. GE操作符 (大于等于)
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 INBOUND_QC_QTY > =12
    example.and().andCreateCondition(” INBOUND_QC_QTY “, Operation. GE,12);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
    ==> Parameters: 12 (Integer)
  13. LT操作符 (小于)
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 INBOUND_QC_QTY <12 example.and().andCreateCondition(" INBOUND_QC_QTY ", Operation.LT, 12); List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (INBOUND_QC_QTY >?)
    ==> Parameters: 12 (Integer)
  14. LE操作符 (小于等于)
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、添加条件 INBOUND_QC_QTY <=12
    example.and().andCreateCondition(” INBOUND_QC_QTY “, Operation. LE,12);
    List basItems = basItemService.find(example);
    //SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
    ==> Parameters: 12 (Integer)
  15. GELE操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、INBOUND_QC_QTY >=12 and INBOUND_QC_QTY <=34
    example.and().andCreateCondition(” INBOUND_QC_QTY “,
    Operation.GELE ,12,34);
    List basItems = basItemService.find(example);
    //SQL:
    select * from BAS_ITEM WHERE (
    INBOUND_QC_QTY >=? And INBOUND_QC_QTY <=?)

    ==> Parameters: 12 (Integer), 34 (Integer)

  16. GTLT操作符
    //创建 example
    BasItemExample example = BasItemExample.create();
    //查询条件 1、INBOUND_QC_QTY >12 and INBOUND_QC_QTY <34 example.and().andCreateCondition(" INBOUND_QC_QTY ", Operation.GTLT 12,34); List basItems = basItemService.find(example);
    //SQL:
    select * from BAS_ITEM where(
    INBOUND_QC_QTY >? And INBOUND_QC_QTY <?)

    ==> Parameters: 12 (Integer), 34 (Integer)

Gschool云平台帮助文档 由吉联UED提供支持