Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes JSP and the fly likes Maintain Data Across Errors Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Maintain Data Across Errors" Watch "Maintain Data Across Errors" New topic
Author

Maintain Data Across Errors

Dave Wingate
Ranch Hand

Joined: Mar 26, 2002
Posts: 262
I was wondering if anyone could suggest a good strategy for maintaining user entered data across, say, validation errors.

My goal is that when a user submits a form to a servlet and something goes wrong, I would like to redisplay the page that the user submitted the form from. I can accomplish this through response.sendRedirect(), but the user's data is gone. It appears that I have a new request object when I use sendRedirect().

Is there a good way to maintain the user's submitted data across multiple invocations of the same JSP?


Fun programming etcetera!
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56152
    
  13

Rather than a redirect, perform a dispatcher forward and the submitted parameter values will be available when re-building the page.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Maintain Data Across Errors
 
Similar Threads
JSP/form/servlet - session persistence ?
To: John Carnell, Re: Method Overrides
link css style sheet
JSTL Weblogic
How can I clear error messages? Not sure if I'm doing this right.