I have a performance issue when using
Struts in the following situation:
Some of our screens display one or more lists of data. These lists are only for display purpose and every time a request is sent to the server, the data for the lists will be read again.
Unfortunately, when a request is sent back to the server, all the data on the screen (that is defined in the ActionForm) will also be sent back to the server - including the lists.
This is not a problem when the lists are small, but when they contain a lot of rows, it takes a long time to 'pack' the data and sent it off.
Is there any way I can tell Struts not to send the list data back to the server?
or is there any way I can remove data from the actionForm manually (i.e. using a javascript function)?