Re: [struts] Slow performance with Struts2

2008-06-30 Thread DNewfield
yorlick kilroy wrote: > thx! you made my day :-) that did the trick! > replacing freemarker 2.3.8 with 2.3.13 speeded up my application by almost > 100% Could you re-run your OGNL 2.6.11 vs. 2.7.2 tests with freemarker 2.3.13 in place, and see if the "upgrade" is still a performance "downgrade" a

Re: NPE in TagUtils.getStack after upgrading to 2.0.1

2006-12-06 Thread DNewfield
>Root cause follows. >java.lang.NullPointerException >at org.apache.struts2.views.jsp.TagUtils.getStack(TagUtils.java:56) I had this problem intermittently, and finally figured out its source and how to quash it for good. It has to do with when struts2 "cleans up" after itself to prevent memory l

Re: Struts2/WebWork and tagdir style tags?

2006-11-22 Thread DNewfield
I gave up on using a .tag file to do this and wrote my own Tag class. In the process I think I may have learned something that relates to this problem: No matter the expression language to be applied to the attributes of a tag, they are all set as Strings. In doTag() (or a related method with b

Re: Struts2/WebWork and tagdir style tags?

2006-11-21 Thread DNewfield
David Durham wrote: > I didn't think s2 or ww had its own EL syntax. You're right, of course. This is simply one of a number of places where the subtle differences between "%{FOO}", "${FOO}", "FOO", etc. (and locations where they're appropriate) has me confused. Any advice to un-confuse me? -D