I am trying to implement pagination feature in Spring Data JPA. I am referring this Blog My Controller contains following code :
@RequestMapping(value=\"/o
The constructors of Pageable are deprecated, use of() instead:
of()
Pageable pageable = PageRequest.of(0, 20);