| Author |
passing an object from Action to jsp
|
Madhu Sudhana
Ranch Hand
Joined: Apr 16, 2006
Posts: 127
|
|
Hi Ranchers, How can we pass an object from Action class to view(jsp) .Using HttpSession we can do.Apart from this one how can we do?? Thanks in advance.
|
"And the trouble is, if you don't risk anything, you risk even more." -- Erica Jong.
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
|
in Struts, the main mechanism for passing information between the JSP and the Action class is the ActionForm. You define properties on this JavaBean representing the information you want passed and you will generally put information into the ActionForm by calling one of it's setter methods. You can then retrieve the information using <bean:write> tags in your JSP. You can specify in the Action mapping you define in your struts-config.xml file whether you want the scope of the ActionForm to be session or request. The default is session.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: passing an object from Action to jsp
|
|
|