I have a small Struts 2 application that displays a JSP page with a table of about 300 rows. Each row in turn contains about 20 links to other actions. The JSP is created using Struts2 tags (OGNL). There is a loop that iterates over a collection and pulls properties of the elements combining them into other action requests.
The pages takes about 60-70 seconds to render. Here's a snippet from profiling log: === [67546ms] - interceptor: profiling [67546ms] - invoke: [203ms] - invokeAction: search [67343ms] - executeResult: success === I am using Struts 2.2.1. Before that I was using 2.1.8 or some such and it took about 30 seconds. Thanks!