Re: Slow performance with Struts2

2008-12-12 Thread yorlick kilroy
ok heres what I did: I replaced all struts2 tags with standard JSTL Core tags in JSPs that generate a lot of output. Now my JSPs load up to 20 times faster. The only place where I use struts2 tags is in forms On Mon, Jul 7, 2008 at 7:30 PM, matt.payne wrote: > > Use firebug to measure you http.

Re: Slow performance with Struts2

2008-07-07 Thread matt.payne
Use firebug to measure you http. Firebug will give you a detail view of what resources (e.g. dojo) are being pulled down with the http traffic. Matt yorlick kilroy-2 wrote: > > Hi, > > I was wondering if there is a way to tweak struts2 performance. > I ported an old struts1 application to st

Re: Slow performance with Struts2

2008-06-25 Thread Paweł Wielgus
Hi Joe, sorry for the previus post, too fast fingers ;-) Long time ago I had similiar problem in struts 1, when accesing lists with logic:iterate it turned out that if i used and this getMyList() method was not really a getter but some logic that was building myList, logic:iterate was accesing myL

Re: Slow performance with Struts2

2008-06-25 Thread Paweł Wielgus
Hi Joe, i had similiar problem in struts On 25/06/2008, yorlick kilroy <[EMAIL PROTECTED]> wrote: > Thanks for the performance-tuning links Dave. I Found a couple of > useful hints there. > Still... the "problem" seems to be the OGNL implementation in struts2. > It seems to me as if one should

Re: Slow performance with Struts2

2008-06-25 Thread yorlick kilroy
Thanks for the performance-tuning links Dave. I Found a couple of useful hints there. Still... the "problem" seems to be the OGNL implementation in struts2. It seems to me as if one should be VERY careful when using OGNL i.e. make use of it very sparingly. in some of my jsps I descend fairly deeply

Re: Slow performance with Struts2

2008-06-24 Thread Dave Newton
http://struts.apache.org/2.x/docs/performance-tuning.html Dave --- On Tue, 6/24/08, yorlick kilroy <[EMAIL PROTECTED]> wrote: > From: yorlick kilroy <[EMAIL PROTECTED]> > Subject: Slow performance with Struts2 > To: user@struts.apache.org > Date: Tuesday, June 24, 2008, 10:23 AM > Hi, > > I wa