I am using Spring Data JPA with a RDBMS in my project. I have a requirement where I have to fetch a single record from the Database from a table which has the latest date. For this I need to use a limit and order by function OR using sub queries. However, I wished to know if i wish for not to use NamedQuery is there a way I can achieve this using Spring Data JPA and QueryDSL.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Shouldn't QueryDslPredicateExecutor.findAll(Predicate predicate, Pageable pageable) do the trick for you? You could hand in a new PageRequest(0, limit) and thus would get back the first limitresults.

link|improve this answer
Thanks for the answer. I did actually find it. It returns a list but works just fine. – Abhishek Jun 16 '11 at 17:36
@Olver Gierke The only issue is it runs an unnecessary query to get the count. I just use QueryDSL in these cases, but a LimitOne syntax would be cool. Posted the suggestion here – Brad Cupit May 17 at 19:22
It does not if you have a return type of List instead of Page. – Oliver Gierke May 18 at 9:11
feedback

How about using the MIN and MAX function to attain this.

SELECT MAX(objDate) FROM Object
link|improve this answer
I was hoping not to use any named queries. By using Names query it is very simple but i was wondering if there was a way around this. – Abhishek Jun 15 '11 at 10:46
feedback

Your Answer

 
or
required, but never shown

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