Helo, I'm using tomcat5,struts,mysql and hibernate
For hibernate to be at it's best in a webapplication, I found several strategies. The 2 major strategies I found: servlet filter(open session in view,Threadlocal) and the struts hibernate plugin.
I'm trying to decide which strategie to use. Any advice?
It's for a webapplication wich quit a lot af data and a rather complex class diagram. Lazy loading in the view will be required.
I've found the following links in the wikki of hibernate
*open session in view
*thread local session
*HibernatePlugIn for Struts
Are there any other resource which might be usefull? I don't find the usage example very clear.
Thank you
|