Handling requests through servlets vs struts action class ?

2007-05-19 Thread jasdeep
,can anybody help me out . Regards , Jasdeep -- View this message in context: http://www.nabble.com/Handling-requests-through-servlets-vs-struts-action-class---tf3781482.html#a10694173 Sent from the Struts - User mailing list archive at Nabble.com

Re: Handling requests through servlets vs struts action class ?

2007-05-19 Thread Jeromy Evans
There should be no additional concurrency limitations for struts actions as for any request handled by other servlet implementations. It's the container that determines how each request is handled. In the simplest case it will use a thread per request drawn from an available thread pool.

Re: Handling requests through servlets vs struts action class ?

2007-05-19 Thread Craig McClanahan
On 5/18/07, jasdeep [EMAIL PROTECTED] wrote: But then i thought it may have serious performance penalty as struts action is using single thread model (AFAIK). This is not a correct assumption. In Struts 1, there is a single *instance* of each Action, but it can be processing multiple