0

Hibernate + HibernateTemplate + Lazy Loading + HQL

We are using HibernateTemplate's find method by passing a HQL query. How do i retrieve the child elements as we have configured Lazy Loading?

Thanks.

1 Answer 1

2

It depends. You can get the elements of the collection by using JOIN FETCH in the HQL query, or you can later call Hibernate.initialize(entity.getSomeLazyCollection())

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.