Re: Initialization stuff

2004-07-14 Thread Martin I. Levi
Got it. Thanks! On Tue, 2004-07-13 at 15:44, Emmanouil Batsis wrote: > Martin I. Levi wrote: > > > Is this a better solution than mine? > > Although I often use servlets for initialization, Paul's suggestion is > better because ServletContextListener was designed exactly for > initialization/f

Re: Initialization stuff

2004-07-13 Thread Bill Siggelkow
Martin, I would not override the ActionServlet -- the plug-in approach is much better and not hard at all. Here is a simple plug in and the Martin I. Levi wrote: Is this a better solution than mine? On Tue, 2004-07-13 at 14:06, Paul McCulloch wrote: You can do this by creating a class which impl

RE: Initialization stuff

2004-07-13 Thread Martin I. Levi
Yeah, but I just need to do initialization when the application starts, the validator and tiles are working all the time when requests come and go. Perhaps is a good solution also, but is mine wrong or discouraged? Thats what i really would like to know. On Tue, 2004-07-13 at 13:58, Matthias Wesse

Re: Initialization stuff

2004-07-13 Thread Emmanouil Batsis
Martin I. Levi wrote: Is this a better solution than mine? Although I often use servlets for initialization, Paul's suggestion is better because ServletContextListener was designed exactly for initialization/finalization purposes. Using the right tool for the job is a good practice even if you g

RE: Initialization stuff

2004-07-13 Thread Martin I. Levi
Is this a better solution than mine? On Tue, 2004-07-13 at 14:06, Paul McCulloch wrote: > You can do this by creating a class which implements > javax.servlet.ServletContextListener. > > This requires a container supporting Servlet 2.3. > > Paul > > > -Original Message- > > From: Martin

RE: Initialization stuff

2004-07-13 Thread Paul McCulloch
You can do this by creating a class which implements javax.servlet.ServletContextListener. This requires a container supporting Servlet 2.3. Paul > -Original Message- > From: Martin I. Levi [mailto:[EMAIL PROTECTED] > Sent: 13 July 2004 12:47 > To: Struts Users Mailing List > Subject: In

RE: Initialization stuff

2004-07-13 Thread Matthias Wessendorf
Perhaps you can write a Plugin that is the way how tiles and Validator gets init. http://struts.apache.org/api/org/apache/struts/action/PlugIn.html regards > -Original Message- > From: Martin I. Levi [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 13, 2004 1:47 PM > To: Struts Users Ma