中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

mybatisplus怎么實現分頁

小樊
247
2024-07-13 10:43:25
欄目: 編程語言

MyBatis Plus 實現分頁功能非常簡單,只需要使用 Page 類即可。下面是一個簡單的示例:

  1. 首先在 Mapper 接口中定義一個查詢方法,使用 Page 類作為參數:
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;

public interface UserMapper extends BaseMapper<User> {

    Page<User> selectUserPage(Page<User> page);

}
  1. 在 Mapper XML 文件中編寫對應的 SQL 查詢語句:
<select id="selectUserPage" resultType="User">
    select * from user
</select>
  1. 在 Service 層中調用 Mapper 方法獲取分頁數據:
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @Autowired
    private UserMapper userMapper;

    public Page<User> getUserPage(int pageNum, int pageSize) {
        Page<User> page = new Page<>(pageNum, pageSize);
        return userMapper.selectUserPage(page);
    }

}
  1. 最后在 Controller 層中調用 Service 方法獲取分頁數據并返回給前端:
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class UserController {

    @Autowired
    private UserService userService;

    @GetMapping("/users")
    public Page<User> getUsers(int pageNum, int pageSize) {
        return userService.getUserPage(pageNum, pageSize);
    }

}

這樣就可以實現 MyBatis Plus 的分頁功能。在調用 getUserPage 方法時,傳入頁碼和每頁數量即可獲取相應的分頁數據。

0
大城县| 兴安县| 乐昌市| 平陆县| 丰镇市| 平遥县| 措美县| 兴安县| 元江| 凉城县| 湘潭市| 定襄县| 恩平市| 安图县| 沁阳市| 固阳县| 兴化市| 社旗县| 遂川县| 罗定市| 长顺县| 苗栗县| 绥芬河市| 盱眙县| 西乌珠穆沁旗| 镇平县| 兖州市| 青铜峡市| 博乐市| 永善县| 汝城县| 寻乌县| 铁岭县| 卓尼县| 四会市| 逊克县| 娱乐| 五华县| 乐亭县| 鹤山市| 军事|