# Mybatis 高级用法和tk.mybatis使用
import tk.mybatis.mapper.entity.Example;
import tk.mybatis.mapper.entity.Condition;
// 假设有一个UserMapper继承自tk.mybatis.mapper.common.Mapper
UserMapper userMapper = ...;
// 创建Example查询对象
Example example = new Example(User.class);
// 设置查询条件
example.createCriteria()
.andEqualTo("username", "admin") // 等价于where username = 'admin'
.andGreaterThan("age", 18); // 并且age > 18
// 使用Example查询
List<User> users = userMapper.selectByExample(example);
// 如果需要根据某个条件排序
example.orderBy("age").desc(); // 按年龄降序排序
// 如果需要分页
example.limit(PageHelper.getStart(pageInfo), pageInfo.getPageSize());
// 再次执行查询
users = userMapper.selectByExample(example);
在这个例子中,我们创建了一个Example
查询对象,并通过andEqualTo
和andGreaterThan
方法添加了两个查询条件,最后通过selectByExample
方法执行查询。同时,我们可以使用orderBy
方法进行排序,以及使用limit
方法进行分页。这些操作都是基于tk.mybatis
提供的Mapper
接口和Example
类。
评论已关闭