I'm using spring-data jpa 1.1.0.M1 now we were using a much higher version and run into issues with spring-data-mongodb due to spring-data-commons. because of that we've used entity manager in our service for certain query including queries with offset and limit.
Now that we've downgraded and everything seems to be fine we would like to maintain everything under repository level when it comes to data access and do much on Business Logic in the Services.
From this documentation i understand that pageable interface is what i need. But the implementation class PageRequest takes page argument. would that mean that my offset becomes the following?
offset = page* limit; => page = offset/limit;
Am I getting it right? thanks for reading this.