Custom Repository Base Class + QueryDslPredicateExecutor
问题 I have found QueryDslPredicateExecutor very useful for reducing boilerplate, but it seems to be throwing a monkey wrench into the works. I'm now trying to extend JpaRepository with a custom base class repository, and on startup, Spring is having trouble instantiating repositories correctly. //Custom base class @NoRepositoryBean public interface IdAwareRepository<A, ID extends Serializable> extends JpaRepository<A, ID> { // ID getId(A a); } // Base class implementation public class