Hi,
I was using my own PersistenceManager singleton which wrapped a Hibernate SessionFactory and did a session.open and session.close for all db operations and then switched all my DAOs to extend from Spring's HibernateDaoSupport (Hibernate 3). I had also been using in-memory HSQLDB with Tomcat in a web application. What I noticed is that before the migration the data would actually persist between successive Tomcat restarts, but now it seems it doesn't. It seems I now have to run HSQLDB in stand-alone server mode... is this normal?
Thanks, Jason
|