|
@@ -49,8 +49,7 @@ public class JpaPlusRepositoryExecutor<T, ID> extends SimpleJpaRepository<T, ID>
|
|
|
this.jpaQueryFactory = new JPAQueryFactory(entityManager);
|
|
|
this.path = SimpleEntityPathResolver.INSTANCE.createPath(domainClass);
|
|
|
this.querydsl = new Querydsl(entityManager, new PathBuilder<T>(path.getType(), path.getMetadata()));
|
|
|
- this.jpaPredicateExecutor =
|
|
|
- new QuerydslJpaPredicateExecutor<>(JpaEntityInformationSupport.getEntityInformation(domainClass, entityManager),
|
|
|
+ this.jpaPredicateExecutor = new QuerydslJpaPredicateExecutor<>(JpaEntityInformationSupport.getEntityInformation(domainClass, entityManager),
|
|
|
entityManager, SimpleEntityPathResolver.INSTANCE, getRepositoryMethodMetadata());
|
|
|
}
|
|
|
|