In my application we have around 17
jsp for getting information
from the user.
Also we have around 65 jsp for user navigation
This 17 jsp has average 19 html components like textbox,
select etc
To maintain user entered data we prefer hidden field than
session attribute.
Number of user: 1, 00,000
Server: WebSphere Application Server v6.1
Framework:
struts 1
For every new module in our project we add corresponding
variable in all the forms and there jsp to maintain the user entered data.
I know that this is an extra work and changing the other module
code just to retain the user information is not a good design.
But we believe that putting the struts form in session will
lead to memory out for 1, 00,000 user
Please guide me is this approach right or wrong?