Action mapping contains all the deployment information for a particular Action bean. This class is to determine where the results of the Action will be sent onc...
An Action class in the struts application extends Struts 'org.apache.struts.action.Action" Class.
Action class acts as wrapper around the business logic and pr...
n action mapping we specify action class for particular url ie path and diffrent target view ie forwards on to which request response will be forwarded. We also...
Struts framework provides us some inbuilt action classes like FORWARD ACTION, INCLUDE ACTION, DISPATCH ACTION, LOOKUPDISPATCH ACTION AND SWITCH ACTION...
In Struts1, Action Servlet is a servelet (since it extends HTTPServle) but Action class extents org.apache.struts.action.Action which has nothing to do with Ser...
A DispatchAction contains a number of different methods other than the standard execute(). These methods are executed based on some request parameter. Your acti...
Differences between Struts 1.1 and 1.2 :-
1) Adviced for replacement of ActionErrors with ActionMessages
2) org.apache.struts.Action statics: Use org.a...
In Struts1, Action Servlet is a servelet (since it extends HTTPServle) but Action class extents org.apache.struts.action.Action which has nothing to do with S...
A Struts action is an instance of a subclass of an Action class, which implements a portion of a Web application and whose perform or execute method returns a f...
The Action Class is part of the Model and is a wrapper around the business logic. The purpose of Action Class is to translate the HttpServletRequest to the busi...