How do I make transfer of a class object from one page to another in a jsp while doing server process too,
eg let be there a page1.jsp it have a commandObject page1 of a class Page
I then fill some of its value in page1.jsp,
I then want the same object to be transfered to another page say page2.jsp
and on that page I fill the remaining values of page1 object and then persist it to data base.
If you don’t wan’t to (or can’t) use a Singleton bean, how about using the
requestorsessionscopes? They are custom-made for this kind of scenario.Source:
scopes