Multiple choice technology web technology Which is true in the following statements? Hibernate does not support lazy initialization for detached objects. Access to a lazy association outside of the context of an open Hibernate session will result in an exception. Lazy fetching is way to avoid unnecessary column reads. All the above. Reveal answer Fill a bubble to check yourself D Correct answer Explanation All statements are true: Hibernate cannot lazily initialize associations on detached objects; accessing a lazy association outside an open session throws a LazyInitializationException; and lazy fetching avoids unnecessary database reads.