Re: Struts & Reports - Performance issue

2004-05-15 Thread Vic Cekvenich
One benefit of Struts MVC is that you can unit test, or performance test each layer. Struts is not slow, but you model access could be slow. Struts is Model (and View) agnostic. So you should stress test (unit test) the performance of your model design isolated, before Struts even sees it. Lik

Struts & Reports - Performance issue

2004-05-15 Thread Prasad, Kamakshya
Hi All, I believe Struts uses reflection api for populating the jsp from form bean. Therefore, if jsp is generating a csv containing a big table with lots of rows (like generating reports), then form bean properties has to be called in a loop (using logic-iterate). Will this be a performance issu