Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:3.2.5.ga
Mapping documents:
Code:
new HibernateCallback(){
public Object doInHibernate(Session session) {
try {
IAutoQuote autoQuote = (IAutoQuote)session.merge(quote);
session.flush();
return autoQuote;
} catch (HibernateException e) {
log.error(e);
throw new LogicExecutionException(e);
}
Full stack trace of any exception that occurs:
After calling the above code, when try to use autoQuote object. I get lazyInitilizationException(), Every time I get at different child in autoQuote object.
AutoQuote tree is very large.
Database : Oracel
I'm posting here for first time, please tell me if you need more information