一、什么是example类
mybatis-generator会为每个字段产生如上的Criterion,如果表的字段比较多,产生的Example类会十分庞大。理论上通过example类可以构造你想到的任何筛选条件。在mybatis-generator中加以配置,配置数据表的生成操作就可以自动生成example了。
下面是mybatis自动生成example的使用。
二、mapper接口中的方法解析
public interface AdminuserMapper {
// 按条件计数
int countByExample(AdminuserExample example);
// 按条件删除
int deleteByExample(AdminuserExample example);
// 按主键删除
int deleteByPrimaryKey(Integer uid);
// 插入数据(返回值为ID)
int insert(Adminuser record);
// 插入一条数据,只插入不为null的字段
int insertSelective(Adminuser record);
// 查询数据
List<Adminuser> selectByExample(AdminuserExample example);
// 按主键查询
Adminuser selectByPrimaryKey(Integer uid);
// 按条件更新值不为null的字段
int updateByExampleSelective(@Param("record") Adminuser record, @Param("example") AdminuserExample example);
// 按条件更新
int updateByExample(@Param("record") Adminuser record, @Param("example") AdminuserExample example);
// 按主键更新值不为null的字段
int updateByPrimaryKeySelective(Adminuser record);
// 按主键更新
int updateByPrimaryKey(Adminuser record);
}
三、example实例解析
public class UserExample {
//升序还是降序
//参数格式:字段+空格+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接口:
long countByExample(CompetingStoreExample example);
List<CompetingStore> selectByExample(CompetingStoreExample example);
在我们的测试类里:
UserExample example = new UserExample();
UserExample.Criteria criteria = example.createCriteria();
五、查询用户数量
long count = UserMapper.countByExample(example);
类似于:select count(*) from user
六、where条件查询或多条件查询
example.setOrderByClause("age asc");//升序
example.setDistinct(false);//不去重
if(!StringUtils.isNotBlank(user.getName())){
Criteria.andNameEqualTo(user.getName());
}
if(!StringUtils.isNotBlank(user.getSex())){
Criteria.andSexEqualTo(user.getSex());
}
List<User> userList = userMapper.selectByExample(example);
类似于:select * from user where name={#user.name} and sex={#user.sex} order by age asc;
UserExample.Criteria criteria1 = example.createCriteria();
UserExample.Criteria criteria2 = example.createCriteria();
if(!StringUtils.isNotBlank(user.getName())){
Criteria1.andNameEqualTo(user.getName());
}
if(!StringUtils.isNotBlank(user.getSex())){
Criteria2.andSexEqualTo(user.getSex());
}
Example.or(criteria2);
List<User> userList=userMapper.selectByExample(example);
类似于:select * from user where name={#user.name} or sex={#user.sex} ;
七、模糊查询
if(!StringUtils.isNotBlank(user.getName())){
criteria.andNameLIke(‘%’+name+’%’);
}
List<User> userList=userMapper.selectByExample(example);
类似于:select * from user where name like %{#user.name}%
八、分页查询
int start = (currentPage - 1) * rows;
//分页查询中的一页数量
example.setPageSize(rows);
//开始查询的位置
example.setStartRow(start);
List<User> userList=userMapper.selectByExample(example);
类似于:select * from user limit start to rows
如果有收获!!! 希望老铁们来个三连,点赞、收藏、转发。
创作不易,别忘点个赞,可以让更多的人看到这篇文章,顺便鼓励我写出更好的博客