• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Design question

 
Ranch Hand
Posts: 109
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

I have an existing struts application consisting of three JSP pages say page1, page2 and page3 and a form bean (for all these pages) and
an action class(using DispatchAction).

I need to append two jsp pages one at the end and other at the begining. The flow will be

newPage1->page1->page2->page3->newPage2

User can select either the old flow or new flow. when user select the new flow, inputs given in the newPage1 are used at the Page1, page2 and other pages.

I created a new form bean, Action class and value object for the new flow. I populated the VO with info in newPage1 and placed it in HttpSession. Page1, page2 and page3 uses the VO in Httpsession. The values selected in these pages are updated in VO. Finally, newPage2 uses the VO for further proceedings.

Is this the best way of doing this?
Is it a good idea to maintain objects across session?

Regards,
Ajay.
 
Ranch Hand
Posts: 948
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What you are doing sounds about like what I have done for wizard type pages. If you are not storing data in the session you have to carry it along using hidden fields in your jsp (or I suppose you could save it to a repository...like a database).

- Brent
 
We don't have time to be charming! Quick, read this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic