반응형
springboot 2 사용 시 application.properties에 아래 값을 설정 할 경우,
spring.data.web.pageable.one-indexed-parameters=true
스웨거에서 page = 23으로 요청
결과에서 pageNumber = 22 로 내려오니 주의해야한다.
jpa는 기본적으로 zero-base 라서 위 설정값을 true로 설정하면 page-1의 값을 컨트롤러에 넘겨 작업을 하고 그대로 result를 뱉는 듯 하다.
참고: https://treasurebear.tistory.com/59
728x90
반응형
'개발 > spring' 카테고리의 다른 글
[actuator] git info를 health에 포함하기 (0) | 2022.01.28 |
---|---|
[jpa] OSIV란; spring.jpa.open-in-view (0) | 2022.01.27 |
[jpa] 영속성 컨텍스트 in spring (0) | 2022.01.27 |
[swagger] in springboot2.6.2 and springdoc (0) | 2022.01.26 |
[gRPC] springboot2 gRPC server/client - clone coding (0) | 2022.01.20 |