I just discovered another feature of the the JDBCStore.
If your webapps save their own classes in the Session (as webapps are
wont to do), then when JDBCStore runs its checks to clean the database,
it will try to pull in ALL sessions including those from other webapps.
Becasue the classes from other webapps are not accessible from each
webapp, this causes ClassNotFoundExceptions when it tries to load the
Sessions (before it deletes them).
Now, I realize that I could set up a different table for each webapp to
avoid this problem. But this is a bit unwieldy in my environment
because we try to put as many webapps on each box as possible with lots
of redundant boxes. So maintenance of all these tables is an issue.
I would like to propose modifying the JDBCStore to include to a column
in the database for the webapp so that you could set up as many webapps
you want.
Thoughts?
~Tom
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
- Re: session persistence with multiple webapps Tom Anderson
- Re: session persistence with multiple webapps Glenn Nielsen