I am very new to use spring-data-jpa, but it looks very promising. I used it to make all repository in my application like this: public interface CustomerRepository extends JpaRepository<Customer, Integer>, JpaSpecificationExecutor<Customer>

I see that there is a methode call findAll(Specification<T>) to make custom search.to call this you should implement the public Predicate toPredicate(Root<T> root, CriteriaQuery<?> q, CriteriaBuilder cb) I am very confused to how to make a predicate. I try to use the example on Spring

  public static Specification<Customer> isLongTermCustomer() {
return new Specification<Customer>() {
  Predicate toPredicate(Root<T> root, CriteriaQuery<?> query,
        CriteriaBuilder builder) {

     LocalDate date = new LocalDate().minusYears(2);
     return builder.lessThan(root.get(Customer_.createdAt), date);
  }
};

} I dont understand where Customer_.createdAtcame from. Any help would be appreciated:)

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Customer_ comes from JPA 2.0 static metamodel that should be generated by a special tool such as Hibernate Metamodel generator.

If you don't want to generate static metamodel, you can do the following instead:

return builder.lessThan(root.<LocalDate>get("createdAt"), date); 
link|improve this answer
Thanks:) i tried to use the hibernate-jpamodelgen. It generates the metamodel but it puts it in the target directory. There is a guid here to how to use it in eclipse.docs.jboss.org/hibernate/stable/jpamodelgen/reference/en-US/… I use Eclipse Helios and i dont find annotation processing there. do you know how i can include it in my class path here is my plugin – user1057347 Dec 26 '11 at 9:37
'<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> <compilerArguments> <processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processo‌​r> </compilerArguments> </configuration> </plugin>' – user1057347 Dec 26 '11 at 9:40
feedback

Your Answer

 
or
required, but never shown

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