Package org.springframework.data.jpa.repository

Examples of org.springframework.data.jpa.repository.EntityGraph


      this.entityGraph = findEntityGraph(method);
    }

    private static final JpaEntityGraph findEntityGraph(Method method) {

      EntityGraph entityGraphAnnotation = AnnotationUtils.findAnnotation(method, EntityGraph.class);
      return entityGraphAnnotation == null ? null : new JpaEntityGraph(entityGraphAnnotation.value(),
          entityGraphAnnotation.type());
    }
View Full Code Here


   * @return
   * @since 1.6
   */
  JpaEntityGraph getEntityGraph() {

    EntityGraph annotation = findAnnotation(method, EntityGraph.class);
    return annotation == null ? null : new JpaEntityGraph(annotation.value(), annotation.type());
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.jpa.repository.EntityGraph

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.