반응형

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

 

[Spring boot] page 1부터 시작하기

Spring data jpa를 사용하면 paging 하기 쉽게 Pageable 인터페이스를 제공해준다. https://docs.spring.io/spring-data/jpa/docs/2.2.7.RELEASE/reference/html/#core.web.basic Spring Data JPA - Reference Doc..

treasurebear.tistory.com

 

728x90
반응형

+ Recent posts