MyBatis是一个优秀的持久层框架,可以通过XML配置文件或者注解方式进行SQL语句的编写和执行。在MyBatis中,条件查询和分页查询是经常使用的功能,结合起来可以更灵活地进行数据查询。
下面是一个示例代码,演示了如何在MyBatis中进行条件查询和分页查询:
public interface UserMapper {
List<User> findUsersByCondition(@Param("username") String username, @Param("age") Integer age, RowBounds rowBounds);
}
<select id="findUsersByCondition" parameterType="java.util.Map" resultType="User">
SELECT * FROM user
<where>
<if test="username != null">
AND username = #{username}
</if>
<if test="age != null">
AND age = #{age}
</if>
</where>
</select>
@Autowired
private UserMapper userMapper;
public List<User> findUsersByCondition(String username, Integer age, int offset, int limit) {
RowBounds rowBounds = new RowBounds(offset, limit);
return userMapper.findUsersByCondition(username, age, rowBounds);
}
@RequestMapping("/users")
public List<User> getUsers(@RequestParam(required = false) String username,
@RequestParam(required = false) Integer age,
@RequestParam(defaultValue = "0") int page,
@RequestParam(defaultValue = "10") int size) {
int offset = page * size;
return userService.findUsersByCondition(username, age, offset, size);
}
通过以上步骤,我们可以实现在MyBatis中进行条件查询与分页查询的功能。在Mapper XML文件中使用<where>
标签可以动态拼接查询条件,在Service层使用RowBounds
对象实现分页查询,在Controller层处理请求参数并调用Service层方法获取数据。这样可以更加灵活地进行数据查询操作。