Github(https://github.com/rldhks8745/spring-boot-practice)

Notion(https://www.notion.so/Mybatis-Interceptor-Paging-35a3e8b167ad47eca25acb56f1fb9795)

Mybatis Interceptor 자동 Paging처리 만들기(2) 바로가기

Mybatis Interceptor 자동 Paging처리 사용방법

♣️미리보기


https://s3-us-west-2.amazonaws.com/secure.notion-static.com/5efd1844-6443-416e-ad02-6c0e791f94f0/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d6e5623f-8d6b-4a87-b78e-27bc00ec215d/Untitled.png

{
    "list": [
        {
            "num": 1,
            "id": "test1",
            "pw": "test1",
            "name": "테스트1"
        },
        {
            "num": 2,
            "id": "test2",
            "pw": "test2",
            "name": "테스트2"
        }
    ],
    "pageInfo": {
        "page": 1,
        "size": 2,
        "totalCount": 3
    }
}

♣️개요


위에 미리보기를 확인해보면 page, size를 보내게 되면 list, pageInfo를 담고있는 JSON을 반환 받도록 자동으로 구성해 볼것이다.

⚫Mapper