-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 
Author Message
 Post subject: Cache problem
PostPosted: Mon Jun 05, 2006 7:25 pm 
Newbie

Joined: Sun Jun 04, 2006 8:41 pm
Posts: 13
Hello,
I'm using Hibernate 3 with Tomcat, mySql and struts. I have a problem in refreshing my data.

I have a table view corresponding to data table in mysql.

I select a data row and change some data. I store the data to the database
and the data is persistent.

If I do a new select the new data is visible, but if I do a select for more times the data is alternately visible or not. The old values stored before are shown.

Furthermore if I do the select from a second browser the stored data from this browser are not visible in the other browser.

I think this problem is associated with the hibernate cache. I have a hibernate util class based on a threadlocal variable for the session and the transaction. I think this is ok also for different users which accessing the web application.

I hope the forum can help me. I like only to get the data stored in the database for all logged in users.

Thank for help

Thomas


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 06, 2006 1:21 am 
Expert
Expert

Joined: Thu May 26, 2005 9:19 am
Posts: 262
Location: Oak Creek, WI
Your java code will help us to diagonize the problem?

_________________
RamnathN
Senior Software Engineer
http://www.linkedin.com/in/ramnathn
Don't forget to rate.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 06, 2006 4:14 am 
Newbie

Joined: Sun Jun 04, 2006 8:41 pm
Posts: 13
Hello RamnathN


Thanks for answering. Following I send you some Java sources. I think the problem is the caching of hibernate. If I debug at the point of loading the data the hibernate function list supplies the wrong values.

I use Lazy loading and it is working well. I hold the session in a thread local variable and my hope was that every request shares that variable. But there must be some conflict with different
requests. Users logged from other browsers doesn't see stored objects of other users. The caches are not refreshed.

I hope you can give me a solution. The other way is to disable lazy loading
and to load and save the data with explicit session.open and session.close.







1. My HibernateUtil class
package com.server.hibernate.util;

import javax.naming.InitialContext;
import javax.naming.NamingException;

import org.apache.log4j.Logger;
import org.hibernate.CacheMode;
import org.hibernate.EntityMode;
import org.hibernate.FlushMode;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;

import com.common.exceptions.LomisDataAccessException;
import com.common.exceptions.LomisExceptionKeys;
import com.common.exceptions.LomisInitializeException;

public class HibernateUtil {

private static Configuration configuration=null;

private static Logger log = Logger.getLogger(HibernateUtil.class);

private static final SessionFactory sessionFactory;

private static final ThreadLocal threadSession = new ThreadLocal();

private static final ThreadLocal threadTransaction = new ThreadLocal();

static {
try {
// Create the SessionFactory
//sessionFactory = new Configuration().configure().buildSessionFactory();
configuration = new Configuration();
if (configuration.getProperty(Environment.SESSION_FACTORY_NAME) != null) {
// Let Hibernate bind the factory to JNDI
configuration.buildSessionFactory();
String sfName = configuration.getProperty(Environment.SESSION_FACTORY_NAME);
log.debug("Looking up SessionFactory in JNDI.");
try {
sessionFactory = (SessionFactory) new InitialContext().lookup(sfName);
} catch (NamingException ex) {
throw new RuntimeException(ex);
}
} else {
// or use static variable handling
sessionFactory = configuration.configure().buildSessionFactory();

}

} catch (Throwable ex) {
// Make sure you log the exception, as it might be swallowed
log.error("Initial SessionFactory creation failed.", ex);
throw new LomisInitializeException(ex);
}
}



public static Session getSession() throws LomisDataAccessException{
Session s = (Session) threadSession.get();
// Open a new Session, if this thread has none yet
try {
if (s == null) {
s = sessionFactory.openSession();

s.setCacheMode(CacheMode.IGNORE);
s.setFlushMode(FlushMode.ALWAYS);
threadSession.set(s);
}
} catch (HibernateException ex) {
throw new LomisDataAccessException(
LomisExceptionKeys.errorGetSession,
ex,
HibernateUtil.class);
}
return s;
}

public static void closeSession() throws LomisDataAccessException{
try {
Session s = (Session) threadSession.get();
threadSession.set(null);
if (s != null && s.isOpen())
s.close();
} catch (HibernateException ex) {
throw new LomisDataAccessException(
LomisExceptionKeys.errorCloseSession,
ex,HibernateUtil.class);
}
}

public static void beginTransaction() throws LomisDataAccessException {
Transaction tx = (Transaction) threadTransaction.get();
try {
if (tx == null) {
tx = getSession().beginTransaction();
threadTransaction.set(tx);
}
} catch (HibernateException ex) {
throw new LomisDataAccessException(
LomisExceptionKeys.errorBeginTransaction,
ex,
HibernateUtil.class);
}
}

public static void commitTransaction()throws LomisDataAccessException {
Transaction tx = (Transaction) threadTransaction.get();
try {
if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack())
tx.commit();
threadTransaction.set(null);
} catch (HibernateException ex) {
rollbackTransaction();
throw new LomisDataAccessException(
LomisExceptionKeys.errorCommitTransaction,
ex,
HibernateUtil.class);
}
}

public static void rollbackTransaction() throws LomisDataAccessException{
Transaction tx = (Transaction) threadTransaction.get();
try {
threadTransaction.set(null);
if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack()) {
tx.rollback();
}
} catch (HibernateException ex) {
throw new LomisDataAccessException(
LomisExceptionKeys.errorRollbackTransaction,
ex,
HibernateUtil.class);
} finally {
closeSession();
}
}
}


2. A save-function of a business action class
/**
* Saves the values of the form edit data fields
* @param pctxAction
*/
public synchronized void save_onClick(FormActionContext ctx){
try {
ViewHelper vh=this.getViewHelper(ctx);
if (vh!=null && vh.validate(ctx)){

GenericDAO dao=this.getDao();
DataObject entity=vh.getDO();
log.info("Dataobject will be saved: "+entity.toString());
if (entity!=null){
dao.saveOrupdate(entity);
// dao.update(entity);
}
//log.info("Dataobject saved: "+entity.toString());
this.getForm(ctx).clearEditArea();
this.initFormBean(ctx);
} else {
ctx.forwardToInput();
}
} catch (Exception e) {
ClientExceptionHandler.addGlobalError(ctx,"error.save",
e,BaseListAction.class);
}
}

3. My load-function
protected void loadFormBean(ActionContext ctx) {
BaseListForm form;
Vector<DataObject> vctDataobject= null;
ArrayList alsViewhelpers;
FilterContainer filterContainer;
LomisListDataModel model;
Vector<ViewHelper> vctViewhelpers = new Vector<ViewHelper>(0);

form = this.getForm(ctx);
if (form != null) {

try {
filterContainer=this.getFilterContainer(this.getSessionUser(ctx));

//filterContainer.add(this.getDeaktivFilterValue());

vctDataobject=getDao().findFiltered(filterContainer);
for (DataObject e: vctDataobject){
ViewHelper vh=getBusinessViewHelper(ctx,e);
//log.info(vh.getClass()+" geladen: Inhalt: "+vh.getDO().toString());
//System.out.println(vh.getClass()+" geladen: Inhalt: "+vh.getDO().toString());
vctViewhelpers.add(vh);
}
} catch (Exception e) {
e.printStackTrace();
ClientExceptionHandler.addGlobalError(ctx,"error.load",
e,BaseListAction.class);
}

model = new LomisListDataModel(vctViewhelpers);
LomisSimpleListControl slc = new LomisSimpleListControl();
slc.setDataModel(model);
form.setSlclist(slc);
}
System.out.println("Load form beendet");
}


4. My hibernate.cfg.xml-file
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>


<property name="hibernate.connection.datasource">java:comp/env/jdbc/lomis</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>

<!-- Print SQL to stdout. -->
<property name="show_sql">true</property>
<property name="format_sql">true</property>

<!-- Bind the getCurrentSession() method to the thread (don't use for EJBs) -->
<property name="current_session_context_class">thread</property>


<!-- Use EHCache but not the query cache. -->
<property name="hibernate.cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<property name="hibernate.cache.use_query_cache">false</property>
<property name="hibernate.cache.use_minimal_puts">false</property>
<property name="hibernate.cache.use_second_level_cache">false</property>
<property name="hibernate.max_fetch_depth">3</property>

//mapping ....

</session-factory>
</hibernate-configuration>


Thanks in advance
Thomas


Top
 Profile  
 
 Post subject: Re: Cache problem
PostPosted: Tue Jun 06, 2006 7:12 am 
Expert
Expert

Joined: Fri Feb 06, 2004 7:49 am
Posts: 255
Location: Moscow, Russia
yallatop wrote:
I think this problem is associated with the hibernate cache.
Turn off the cache and check it again.

Try to disable generated HTML caching:
http://forum.java.sun.com/thread.jspa?threadID=703952&messageID=4081371
http://forum.java.sun.com/thread.jspa?threadID=587075&messageID=3028976

_________________
Leonid Shlyapnikov


Top
 Profile  
 
 Post subject: Re: Cache problem
PostPosted: Tue Jun 06, 2006 7:13 am 
Expert
Expert

Joined: Fri Feb 06, 2004 7:49 am
Posts: 255
Location: Moscow, Russia
yallatop wrote:
I think this problem is associated with the hibernate cache.

Turn off the cache and check it again.

Try to disable generated HTML caching:
http://forum.java.sun.com/thread.jspa?threadID=703952&messageID=4081371
http://forum.java.sun.com/thread.jspa?threadID=587075&messageID=3028976

_________________
Leonid Shlyapnikov


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 06, 2006 8:06 am 
Newbie

Joined: Sun Jun 04, 2006 8:41 pm
Posts: 13
Hello

the mentioned cache option for the html page is already disabled.

Thomas


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 06, 2006 8:16 am 
Expert
Expert

Joined: Thu May 26, 2005 9:19 am
Posts: 262
Location: Oak Creek, WI
Hi Thomas,

dao.saveOrupdate(entity);

Do u flush the session in the above method. I feel like you use a long session so that the values are not populated.

I suppose you will have to refresh the session i.e) session.refresh(). If you have some many users accessing the same data.

I feel like you can also refresh the session in loadFormBean method. This is a costly process by not using cache. Any way try it out.

_________________
RamnathN
Senior Software Engineer
http://www.linkedin.com/in/ramnathn
Don't forget to rate.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 06, 2006 9:37 am 
Newbie

Joined: Sun Jun 04, 2006 8:41 pm
Posts: 13
Hello RamnathN,

I also tried to refresh the save object without any effect. Is it possible to refresh the complet session? Refering to the API I found only a refresh function for an object.

Thanks Thomas


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.