Set request attributes when a Form is POSTed

Posted by ssahmed555 on Stack Overflow See other posts from Stack Overflow or by ssahmed555
Published on 2010-06-03T16:19:56Z Indexed on 2010/06/03 16:34 UTC
Read the original article Hit count: 194

Filed under:
|
|
|
|

Is there any way to set request attributes (not parameters) when a form is posted?

The problem I am trying to solve is: I have a JSP page displaying some data in a couple of dropdown lists. When the form is posted, my Controller servlet processes this request (based on the parameters set/specified in the form) and redirects to the same JSP page that is supposed to display addition details. I now want to display the same/earlier data in the dropdown lists without having to recompute or recalculate to get that same data.

And in the said JSP page, the dropdown lists in the form are populated by data that is specified through request attributes. Right now, after the Form is POSTed and I am redirected to the same JSP page the dropdown lists are empty because the necessary request attributes are not present.

I am quite the n00b when it comes to web apps, so an obvious & easy solution to this problem escapes me at the moment!

I am open to suggestions on how to restructure the control flow in the Servlet.

Some details about this app: standard Servlet + JSP, JSTL, running in Apache Tomcat 6.0.

Thanks.

© Stack Overflow or respective owner

Related posts about java

Related posts about html