Using @RepositoryDefinition and JpaSpecificationExecutor methods doesn't work
问题 I'm having a Spring Data repository class like: @RepositoryDefinition(domainClass = Book.class, idClass = Long.class) public interface BookRepository { List<Book> findAll(); List<Book> findByOrderByPublishDateDesc(); Book findOne(Long id); Book save(Book book); boolean exists(Long id); void delete(Long id); Iterable<Book> findAll(Predicate predicate, OrderSpecifier<?>... orders); } The standard crud methods do work, however the findAll (from JpaSpecificationExecutor) doesn't work. Do