can anybody tell.what is the difference between Forward
Action and Action Forward?
Answers were Sorted based on User's Feedback
Answer / shafquatullah siddiqui
Have you looked at the API for these two classes? Their names might share the same words but they are quite different. ForwardAction is a type of action where ActionForward is the object that you return from your execute method.
From the 1.1 documentation (at http://struts.apache.org/1.1/api/index.html):
ActionForward: An ActionForward represents a destination to which the controller servlet, ActionServlet, might be directed...as a result of processing activities of an Action class.
ForwardAction: An Action that forwards to the context-relative URI specified by the parameter property of our associated ActionMapping.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / p.a.v.k.prasad
ActionForward is a return type of execute() method in the
Action class.
Based on this Actionforward the request processor dispatches
the request to corresponding page(either Success or failure).
Forwardaction:
for this we use
<forward name"success" path="success.jsp"/> it is a child
tad of <action>.
| Is This Answer Correct ? | 4 Yes | 1 No |
how to write my own Action servlet by extending pre-defined Action servlet in struts config.
In which method of action class the business logic is executed?
What's the purpose of execute method of action class?
What is the significance of logic tags in Struts?
What is the purpose of form-be tag in struct-config.xml?
collection framework hirarchy?
Hai all.What is the use of <logic:iterate>tag in struts application.
What is controller in struts2?
How can we work with error tags?
What is Struts Flow?
kindly can any one post for me portlet,hibernate,spring example code and configuration,and some related tutorials plz its urgent for me....thanks in advance ............
What is the forward action utilized for?