Re: data caching in web application

2004-11-30 Thread Mark Benussi
--Original Message Follows From: Vic <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: data caching in web application Date: Tue, 30 Nov 2004 03:01:51 -0800 A more MVC approach is to do DATA chacing in the DATA

Re: data caching in web application

2004-11-30 Thread Vic
A more MVC approach is to do DATA chacing in the DATA layer. It is recomended that you do datacaching via a DAO. (iBatis, Hibrenate, etc.) .V Jesse Alexander (KBSA 21) wrote: concerning the actual access, that Javaworld article about sql in Java sounds a cool way to do it... about the initiali

RE: data caching in web application

2004-11-30 Thread Jesse Alexander (KBSA 21)
concerning the actual access, that Javaworld article about sql in Java sounds a cool way to do it... about the initializing: - create a standard servlet that fetches the data and sets up a JavaBean (aka POJO) and stores that in the servlet-context - define this servlet in the web.xml and add th

Re: data caching in web application

2004-11-29 Thread Jeff_Caswell
These techniques: http://www.javaworld.com/javaworld/jw-10-2004/jw-1018-filter.html http://www.javaworld.com/javaworld/jw-11-2004/jw-1122-select.html Used against a collection loaded at application init() Might be what you are looking for. JC