Re: Performance issue with nested iterator

2012-07-05 Thread Łukasz Lenart
Thanks! The latest version of S2 is already using 2.3.19 Kind regards -- Łukasz mobile +48 606 323 122 http://www.lenart.org.pl/ Warszawa JUG conference - Confitura http://confitura.pl/ 2012/7/5 Miguel Almeida : > I believe I've found the culprit. > While the problem is present in commit > htt

Re: S2 equivalent of ForwardAction?

2012-07-05 Thread Łukasz Lenart
2012/7/6 Paul Benedict : > Is there any such shortcut in S2? It would be nice if such a thing existed > like: > > /page.jsp > It should work, as a default action class is the ActionSupport class and its execute() method returns SUCCESS. Regards -- Łukasz mobile +48 606 323 122 http://www.l

Re: S2 equivalent of ForwardAction?

2012-07-05 Thread Dave Newton
Such a thing does exist, just don't name a class :) Dave (pardon brevity, typos, and top-quoting; on cell) On Jul 5, 2012 8:28 PM, "Paul Benedict" wrote: > In Struts 1, I could use a ForwardAction (or forward attribute) to go > directly to a JSP page. The controller activates and the page rende

Re: Struts CRUD generator

2012-07-05 Thread Thomas Sattler
http://struts2builder.sourceforge.net On Thu, Jul 5, 2012 at 8:42 PM, Mitch Claborn wrote: > I thought I saw a reference fairly recently to a Struts CRUD generator - > generates a complete struts application for database manipulations. Can > someone point me in the right direction? > > mitch

S2 equivalent of ForwardAction?

2012-07-05 Thread Paul Benedict
In Struts 1, I could use a ForwardAction (or forward attribute) to go directly to a JSP page. The controller activates and the page renders. Is there any such shortcut in S2? It would be nice if such a thing existed like: /page.jsp Thanks, Paul ---

Struts CRUD generator

2012-07-05 Thread Mitch Claborn
I thought I saw a reference fairly recently to a Struts CRUD generator - generates a complete struts application for database manipulations. Can someone point me in the right direction? mitch - To unsubscribe, e-mail: user-un

Re: Performance issue with nested iterator

2012-07-05 Thread Miguel Almeida
I believe I've found the culprit. While the problem is present in commit https://github.com/mmalmeida/struts-performance/commit/aba93098174c8c8c1684ffdd9bf332b212a893a , it's not present in the latest commit if you turn devMode to false. The issue was the freemarker version 2.3.9 in that commit.

Re: Performance issue with nested iterator

2012-07-05 Thread Miguel Almeida
Sorry, I sent the email before explaining. The repo has a maven project that I stripped down to the most basic to show the issue. Notice the iterator in index.jsp. I tried to remove every unused configuration, file and dependency to make the project as simple as possible. The original project is

Re: Performance issue with nested iterator

2012-07-05 Thread Miguel Almeida
Sure, Lukas: https://github.com/mmalmeida/struts-performance On Thu, 2012-07-05 at 06:48 +0200, Lukasz Lenart wrote: > Could you post somewhere (GitHub) the whole code base ? > > > Regards