PDA

View Full Version : Paging with spring-data-mongodb



eldariof
Jan 29th, 2012, 11:16 AM
Hello,

Whether there is support pagination?

Oliver Gierke
Jan 30th, 2012, 02:18 AM
http://static.springsource.org/spring-data/data-mongodb/docs/1.0.0.RELEASE/reference/html/#repositories.special-parameters

marcoberri
Feb 29th, 2012, 03:54 AM
hello,
you can sort and paged simultaneously using the repository? I can not find examples that can help me.

thank you!

marcoberri
Mar 1st, 2012, 03:14 AM
I find this with mongotemplate:

Page<Track> tracks = trackrepository.findAll(new PageRequest(p,20,Sort.Direction.DESC,"date"));

good!