I am trying to incorporate Spring-Data-JPA to my project. One thing confuses me is how to achieve setMaxResults(n) by annotation ?

for example , my code:

public interface UserRepository extends CrudRepository<User , Long>
{
  @Query(value="From User u where u.otherObj = ?1 ")
  public User findByOhterObj(OtherObj otherObj);
}

I only need to return one (and only one) User from otherObj , but I cannot find a way to annotate the maxResults ... Can somebody give me a hint ?

(mysql complains :

com.mysql.jdbc.JDBC4PreparedStatement@5add5415: select user0_.id as id100_, user0_.created as created100_ from User user0_ where user0_.id=2 limit ** NOT SPECIFIED **
WARN  util.JDBCExceptionReporter - SQL Error: 0, SQLState: 07001
ERROR util.JDBCExceptionReporter - No value specified for parameter 2

)

I found a link : https://jira.springsource.org/browse/DATAJPA-147 , I tried but failed. It seems not possible now ? Why such a important feature not built in Spring-Data ?

If I implement this feature manually :

public class UserRepositoryImpl implements UserRepository

I have to implement tons of predefined methods in CrudRepository , this will be terrible.

environments : spring-3.1 , spring-data-jpa-1.0.3.RELEASE.jar , spring-data-commons-core-1.1.0.RELEASE.jar

link|improve this question

73% accept rate
feedback

1 Answer

To retrieve only slices of data Spring Data uses the pagination abstraction which comes with a Pageable interface on the requesting side as well as a Page abstraction on the result side of things. So you could start with

public interface UserRepository extends Repository<User, Long> {

  List<User> findByUsername(String username, Pageable pageable);
}

and use it like this:

Pageable topTen = new PageRequest(0, 10);
List<User> result = repository.findByUsername("Matthews", topTen);

If you need to know the context of the result (which page is it actually? is it the first one? how many are there in total?) use Page as return type:

public interface UserRepository extends Repository<User, Long> {

  Page<User> findByUsername(String username, Pageable pageable);
}

The client code can then do something like this:

Pageable topTen = new PageRequest(0, 10);
Page<User> result = repository.findByUsername("Matthews", topTen);
Assert.assertThat(result.isFirstPage(), is(true));

Not that we will trigger a count projection of the actual query to be executed in case you use Page as return type as we need to find out how many elements there are in total to calculate the metadata. Beyond that be sure you actually equip the PageRequest with sorting information to get stable results. Otherwise you might trigger the query twice and get different results even without the data having changed underneath.

link|improve this answer
Thanks , but I still hope for an 'annotation based' solution. Because 'Page / Pageable' are too overkill in this case. And client has to create a Pageable/Page to retrieve 'one and only one' result... It's very un-friendly to use. And it seems you are in charge of Spring-Data , I hope you can further look into this problem : stackoverflow.com/questions/9276461/… . Can you confirm if it is Spring-Data's bug ? – smallufo Feb 17 at 0:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.