Link to home
Start Free TrialLog in
Avatar of cuttieveenz
cuttieveenz

asked on

is it required to flush and clear hibernateTemplate?

Hi ,
I am using Hibernate and Spring. we are using getHibernateTemplate().find() in our DAOs. After the find() is called, do we have to explicitly call flush() and clear()? Will it lead to memory leak if we dont flush and clear?
Avatar of mahome
mahome
Flag of Germany image

flush() don't help, becaus it only synchronizes with the DB
clear() helps if you are loading to much data
you can use evict() instead of clear() for specific objects
http://docs.jboss.org/hibernate/stable/core/reference/en/html/performance.html

It don't load to memory leaks but if you are loading to much data, you have to evict()/clear() so that the session-cache doesn't get too big.

Normaly the session is cleared when it will be closed and you don't have to clear it on you own.
Avatar of cuttieveenz
cuttieveenz

ASKER

actually the data consists of CLOB column data...hence it is very large and leads to memory leak
Then I would advice to iterate through the result and evict each result

Iterator iter = session.createQuery("from CatImpl as cat").iterate();
 
while(iter.hasNext() ) {
	Cat currentCat = (Cat) iter.next();
	session.evict(currentCat);	
}

Open in new window

In my DAO code is as follows:

List emp = getHibernateTemplate().find("from Employee");
return emp;

Here emp is a list of objects which has CLOB data. I get a memory leak due to this clob in hibernate.

That's why i changed the code as follows:

List emp = getHibernateTemplate().find("from Employee");
getHibernateTemplate().flush();
getHibernateTemplate().clear();
return emp;

Will this help?
ASKER CERTIFIED SOLUTION
Avatar of mahome
mahome
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Sathish David  Kumar N
flush() is used for flush getHibernateTemplate() content u were used in  session factory creation
Just a side question, do you experience LazyInitializationException when you call to get associated objects from the Employee you queried for, like employee.getDepartment().getName() ? What I try to ask is: is the Hibernate Session closed right after each call to HibernateTemplate?

Are you using CMT or BMT?? I ask this because the solution to your problem really depends on how you define the demarcation of a transaction and of a Hibernate session.

As mahome suggested, the Hibernate Session object will cache the result of any queries and will clear the cache out automatically when it is closed. But when does a Hibernate Session close? As you use the class  HibernateTemplate from Spring and make a query, if you setting is not correct, you will find that the Hibernate Session will always close itself right after each call.