what is ForwardAction and IncludeAction in struts?
Answer Posted / a.kranthi kumar
ForwardAction is used forward controle from one (jsp)page to another page(jsp) by follow MVC rules.
we can use this we simply configure it in struts-cinfig.xml
file. But we no need extend any class separately.
<action-mappings>
<action path="/success.do" type="org.apache.struts.actions.ForwardAction"
parameter="/success.jsp"/>
</action-mappings>
(or)
<action path="/success" forward="success.jsp">
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
How can we upload files in Struts2 application?
What do you mean by tiles in struts?
What are the benefits of Struts framework?
In struts.xml, what does the attribute "method" stands for in the "action" tag?
What is Struts2?
What is the use of lookupdispatchaction?
Can you explain struts validator framework?
What are the core components of a struct2 based application?
What are the classes used as part of struts framework ?
What is interceptor? And life cycle methods of interceptor?
in struts how to use hibernate with struts>
How many action classes can be used in struts application?
How to display validation errors on jsp page?
Which components are available using actioncontext map?
Is struts mvc framework?