Github(https://github.com/rldhks8745/spring-boot-practice)
Notion(https://www.notion.so/Mybatis-Interceptor-Paging-35a3e8b167ad47eca25acb56f1fb9795)
Mybatis Interceptor 자동 Paging처리 만들기(2) 바로가기
Mybatis Interceptor 자동 Paging처리 사용방법
{
"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을 반환 받도록 자동으로 구성해 볼것이다.