How do we specify FetchMode
as JOIN
in JPA? I do under开发者_开发技巧stand that in hibernate we can do it by @Fetch(FetchType.JOIN)
. But how do we achieve this in JPA?
You can't. Use the hibernate-specific annotation.
How do we specify FetchMode
as JOIN
in JPA? I do under开发者_开发技巧stand that in hibernate we can do it by @Fetch(FetchType.JOIN)
. But how do we achieve this in JPA?
You can't. Use the hibernate-specific annotation.
精彩评论