MybatisPlus分页查询的案例 java
时间: 2024-01-11 19:43:12 浏览: 90
Sure, 我很乐意回答关于MybatisPlus分页查询的案例的问题。以下是一个完整的分页查询的Java代码示例:
```
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.example.demo.entity.User;
import com.example.demo.mapper.UserMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserService {
@Autowired
private UserMapper userMapper;
public IPage<User> getPageUsers(long current, long size) {
// 创建分页对象
Page<User> page = new Page<>(current, size);
// 执行分页查询
return userMapper.selectPage(page, null); // null表示无条件查询
}
}
```
该代码示例使用了MybatisPlus提供的分页插件,IPage接口表示分页查询的结果集,Page类表示分页对象模型,UserMapper是一个自定义的User表的Mapper接口。
我希望这个示例能够对你有所帮助。如果你有其他关于MybatisPlus或者Java的问题,请继续提问!
阅读全文