Max
Max

Reputation: 774

Spring Data Jpa Query dsl with fetch join

Is it possible to specify Join Fetch when using QueryDsl and Spring Data Repository?

Upvotes: 2

Views: 3084

Answers (1)

Simon
Simon

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

Related Questions