Re: Hibernate Session to User Session

2004-06-07 Thread Brian Alexander Lee
Wouldn't that be pretty resource intensive since it would basically mean that you have a database connection for every user session in your app. Typically that is pretty bad and getting a new connection from a connection pool is usually pretty quick. I'm unfamiliar with how hibernate manges sessio

Re: Simplifying struts-config.xml

2004-07-09 Thread Brian Alexander Lee
Sounds like you should get a new xml editor if you care about file real estate. BAL - Original Message - From: "Michael McGrady" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, July 08, 2004 5:44 PM Subject: Simplifying struts-config.xml > Is ther

Re: Storing global data in the servletContext

2004-05-09 Thread Brian Alexander Lee
That's interesting, so you recommend having an EJB (running in the ejb container) to manage data put into user sessions and servlet contexts (running in the web container)? What's the advantage to this technique? Because it seems to have a lot of overhead if you have to serialize the entire servle