* @param entityClass 是否开启查询缓存
*/
public RepositoryHelper(Class<?> entityClass) {
this.entityClass = entityClass;
EnableQueryCache enableQueryCacheAnnotation =
AnnotationUtils.findAnnotation(entityClass, EnableQueryCache.class);
boolean enableQueryCache = false;
if (enableQueryCacheAnnotation != null) {
enableQueryCache = enableQueryCacheAnnotation.value();
}
this.enableQueryCache = enableQueryCache;
}