spring - Hibernate Lazy Loading HQL -
hibernate + hibernatetemplate + lazy loading + hql
we using hibernatetemplate's find method passing hql query. how retrieve child elements have configured lazy loading?
thanks.
it depends. can elements of collection using join fetch
in hql query, or can later call hibernate.initialize(entity.getsomelazycollection())
Comments
Post a Comment