Apache Struts Question:

What is the difference between ForwardAction and IncludeAction?

Struts Interview Question
Struts Interview Question

Answer:

The difference is that you need to use the IncludeAction only if the action is going to be included by another action or jsp. Use ForwardAction to forward a request to another resource in your application, such as a Servlet that already does business logic processing or even another JSP page.


Previous QuestionNext Question
What is IncludeAction?What is LookupDispatchAction?