mybatis 按照条件查询

Posted 方方方方方方

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis 按照条件查询相关的知识,希望对你有一定的参考价值。

mybatis 按照条件查询

@Autowired
private StudentMapper studentMapper;

@Override
public Map getStudentList(int page, int rows,long studentId) {

    // 设置分页信息
    PageHelper.startPage(page, rows);
    // 执行查询
    StudentExample example = new StudentExample();
    Criteria criteria = example.createCriteria();
    //根据学生 id 查询
    criteria.andStudentIdEqualTo(studentId);
//执行查询 List
<Student> list = studentMapper.selectByExample(example);
// 取分页信息 PageInfo<TbContent> info = new PageInfo<>(list); Map map= new HashMap(); map.setRows(list); map.setTotal(info.getTotal()); return map; }

 



以上是关于mybatis 按照条件查询的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis关于复杂的SQL查询的处理&Mybatis的缓存机制

MyBatis动态SQL标签用法

Mybatis -- 动态Sql概述动态Sql之<if>(包含<where>)动态Sql之<foreach>sql片段抽取

使用mybatis框架实现带条件查询-多条件

MybatisPlus分页条件查询

mybatis example常见用法