Skip to content

Instantly share code, notes, and snippets.

@yannbriancon
Created May 2, 2020 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yannbriancon/450025ddf926ca0280ab783926e83c99 to your computer and use it in GitHub Desktop.
Save yannbriancon/450025ddf926ca0280ab783926e83c99 to your computer and use it in GitHub Desktop.
JPQL with JOIN FETCH
@Query("SELECT *
FROM Message m
LEFT JOIN FETCH m.author")
List<Message> getAllBy();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment