| Joined: Thu Sep 22, 2011 9:06 am
 Posts: 16
 | 
				
					| Team, My existing developers are set lazy="false" and worked lot. Now I am facing performance issue. It is fetching all child objects. Without changing my existing hbm files Is there any way to avoid lazy="false". 
 Or
 
 --->Having two hibernate.cfg.xml on the same project
 SessionFactory sessionFactory1 = new Configuration().configure("oracleconfig.cfg.xml").buildSessionFactory();
 Session webSession=sessionFactory2.getCurrentSession();
 public Session getWebSession()[
 return webSession;
 }
 
 
 SessionFactory sessionFactory2 = new Configuration().configure("oracleconfig_duplicate.cfg.xml").buildSessionFactory();
 Session webServiceSession=sessionFactory2.getCurrentSession();
 public Session getWebSeviceSession()[
 return webServiceSession;
 }
 
 
 |  |