Most Hibernate associations support "fetch" parameter:
fetch="join|select"
with "select" being default value.
How to decide which one to use for which association?
I tried changing all from "select" to "join" application wide - number of generated queries decreased probably 10 times but performance stayed exactly the same (even become a tiny bit worse).
Thanks.