mybatis中关于example类详解

一、什么是example类

     mybatis-generator会为每个字段产生如上的Criterion,如果表的字段比较多,产生的Example类会十分庞大。理论上通过example类可以构造你想到的任何筛选条件。在mybatis-generator中加以配置,配置数据表的生成操作就可以自动生成example了。具体配置可以参考MBG有关配置
     下面是mybatis自动生成example的使用。

二、了解example成员变量

     //升序还是降序
     //参数格式:字段+空格+asc(desc)
     protected String orderByClause;
     //去除重复
     //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 {……}

三、example使用前的准备

     比如我的example是根据user表生成的,UserMapper属于dao层,UserMapper.xml是对应的映射文件
     UserMapper接口:


 
 
  1. long countByExample(CompetingStoreExample example);
  2. List<CompetingStore> selectByExample(CompetingStoreExample example);

    在我们的测试类里:


 
 
  1.      UserExample example = new UserExample();
  2.      UserExample.Criteria criteria = example.createCriteria();

四、查询用户数量

 long count = UserMapper.countByExample(example);
 
 

      类似于:select count(*) from user

五、where条件查询或多条件查询


 
 
  1. example.setOrderByClause( "age asc"); //升序
  2.      example.setDistinct( false); //不去重
  3.      if(!StringUtils.isNotBlank(user.getName())){
  4.           Criteria.andNameEqualTo(user.getName());
  5.      }
  6.      if(!StringUtils.isNotBlank(user.getSex())){
  7.           Criteria.andSexEqualTo(user.getSex());
  8.      }
  9.      List<User> userList=userMapper.selectByExample(example);

     类似于:select * from user where name={#user.name} and sex={#user.sex} order by age asc;


 
 
  1. UserExample.Criteria criteria1 = example.createCriteria();
  2.      UserExample.Criteria criteria2 = example.createCriteria();
  3.      if(!StringUtils.isNotBlank(user.getName())){
  4.           Criteria1.andNameEqualTo(user.getName());
  5.      }
  6.      if(!StringUtils.isNotBlank(user.getSex())){
  7.           Criteria2.andSexEqualTo(user.getSex());
  8.      }
  9.      Example.or(criteria2);
  10.      List<User> userList=userMapper.selectByExample(example);

     类似于:select * from user where name={#user.name} or sex={#user.sex} ;

六、模糊查询


 
 
  1.       if(!StringUtils.isNotBlank(user.getName())){
  2.            criteria.andNameLIke(‘%’+name+’%’);
  3.       }
  4.       List<User>  userList=userMapper.selectByExample(example);

      类似于:select * from user where name like %{#user.name}%

七、分页查询


 
 
  1.         int start = (currentPage - 1) * rows;
  2.         //分页查询中的一页数量
  3.         example.setPageSize(rows);   
  4.         //开始查询的位置
  5.         example.setStartRow(start);
  6.         List<User> userList=userMapper.selectByExample(example);

        类似于:select * from user limit start to rows

 

 

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值