DATAJPA-1664 - Fixes typos in documentation of @EntityGraph.

Original pull request: #407.
This commit is contained in:
Oerd Cukalla
2020-01-14 01:41:13 +01:00
committed by Jens Schauder
parent 4c6279e4ea
commit 95d4775be2

View File

@@ -25,12 +25,15 @@ import org.springframework.data.jpa.repository.query.JpaQueryMethod;
/**
* Annotation to configure the JPA 2.1 {@link javax.persistence.EntityGraph}s that should be used on repository methods.
* Since 1.9 we support the definition of dynamic {@link EntityGraph}s by allowing to customize the fetch-graph via via
* Since 1.9 we support the definition of dynamic {@link EntityGraph}s by allowing to customize the fetch-graph via
* {@link #attributePaths()} ad-hoc fetch-graph configuration.
*
* If {@link #attributePaths()} are specified then we ignore the entity-graph name {@link #value()} and treat this
* {@link EntityGraph} as dynamic.
*
* @author Christoph Strobl If {@link #attributePaths()} are specified then we ignore the entity-graph name
* {@link #value()} and treat this {@link EntityGraph} as dynamic.
* @author Christoph Strobl
* @author Thomas Darimont
* @author Oerd Cukalla
* @since 1.6
*/
@Retention(RetentionPolicy.RUNTIME)