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
Why is it called struts?
What is the purpose of @requiredstringvalidator annotation?
What do you know about validation plugin ?
Give the details of xml files used in validator framework?
How to build struts application in eclipse?
What is the difference between shocks and struts?
What is the use of form bean in struts?
What does i18n interceptor?
What design patterns are used in struts?
What is the use of Struts.xml configuration file?
What are the advantages of spring mvc over struts mvc?
What is the purpose of action-mappings tag in struct-config.xml?
What are the aware interfaces in struts2?
What is the purpose of @conversion?
List some struts tag libraries?