Reputation: 774
Is it possible to specify Join Fetch when using QueryDsl and Spring Data Repository?
Upvotes: 2
Views: 3084
Reputation: 857
No, there's no keyword in Spring Data JPA to trigger a fetch. But you can write a Custom Repository and implement a query using Querydsl there.
Upvotes: 3