Skip to content

Commit aab0efa

Browse files
gregturnschauder
authored andcommitted
Use Jakarta EE 9 fetchgraph hint.
Migrate from the old Java EE fetchgraph hint (javax.persistence.fetchgraph) to the new Jakarta EE fetchgraph hint (jakarta.persistence.fetchgraph) hint. Resolves #2825 Original pull request #2828
1 parent c63d0bf commit aab0efa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/EntityGraphFactory.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@
3030
*
3131
* @author Jens Schauder
3232
* @author Petr Strnad
33+
* @author Greg Turnquist
3334
* @since 2.6
3435
*/
3536
abstract class EntityGraphFactory {
3637

37-
public static final String HINT = "javax.persistence.fetchgraph";
38+
public static final String HINT = "jakarta.persistence.fetchgraph";
3839

3940
/**
4041
* Create an {@link EntityGraph} from a collection of properties.

0 commit comments

Comments
 (0)