3. Set the mapping name to the action attribute of html:link
// mappingdispatchaction.jsp | | | |
What are the advantages?
- Single action class can be used for multiple action mappings. The attribute of the action mapping can be added or removed and a new mapping can be created while the action class remains the same.
- Useful in places where there are 2 actions, one of which needs a formbean while the other does not but both uses the same Action class. In such cases, two new action mappings can be created one with ‘name' attribute and one without and the same Action class name can be used.
What are the disadvantages?
- We still cannot extend our CRUDMappingDispatchAction from any custom base class and have the aggregation intact.
- Cannot attach events. More about this later.
ActionDispatcher
How to create one?
1. Extend your action class from Action. Do not confuse about the inclusion of BaseAction.java. I have just moved the common code part to this BaseAction and extended my action class from it.
// src/CRUDActionDispatcher.java /** * This is an example class for demonstrating ActionDispatcher * functionality. Observe here that we are extending our * action class from BaseAction where the session validation * is done. *
|
// src/BaseAction.java /** * This is an example class where session validation * is done normally. But if you look at closely we have * actually written our ActionDispatcher code here and * simply extended our example class for demonstrating * ActionDispatcher functionality from this class. *
|
2. Declare a variable of type ActionDispatcher as follow (see above code snippet):
protected ActionDispatcher dispatcher = new ActionDispatcher(this, ActionDispatcher.DEFAULT_FLAVOR);
3. Add the following line as the last line of your default ‘execute' method. Note that this is not needed for other methods. (see above code snippet)
return dispatcher.execute(mapping, form, request, response);
4. Define a query string parameter or a hidden variable (‘methodToCall' in our examples)
// actiondispatcher.jsp |
5. Set the parameter's value to the desired function name of the action class (create, read etc).
// actiondispatcher.jsp // actiondispatcher.jsp |
What are the advantages?
- Observe that we have extended our action class (CRUDActionDispatcher) from our custom base class (BaseClass) which is what we wanted in order to decouple the session validation code into the BaseClass.
- Only a couple of changes to the code avoid the need to extend from a subclass.
- Easy to use.
What are the disadvantages?
- We cannot attach events to the controls.
Event Aggregating Actions
If you are familiar with swing programming you might have heard of events. An event is nothing but a piece of code that is executed when, say, a button is clicked, a linked is clicked etc. In all the above types of actions we have defined a parameter (methodToCall) which is in turn mapped to the action name. This is a good feature for security concerns. However, we need a way to have the method name different from the actual method called, at the same time eliminating the need to define a hidden variable or a query string. This is where the Event Aggregating Actions comes into the picture.
There are two important types of Event Aggregating Actions as said earlier, namely, EventDispatchAction and EventActionDispatcher
Let's see each one of them in detail.
EventDispatchAction
How to create one?
1. Extend your action from EventDispatchAction
/**
* This is an example class for demonstrating EventDispatchAction
* functionality. Observe here that we can also extend our class from
* BaseAction class like in ActionDispatcher example and move our
* session validation to that class.
*
* The EventActionDispatcher as the name suggests is used to attach
* events to the html controls. This type of aggregation eliminates the
* need to define a parameter(eg., methodToCall). We havent used any
* hidden parameters to combine an event to a method. This event-to-method
* mapping is removed using EventActionDispatcher.
*
* We can also use an Alias for the method name and map it to the method name
* as can be seen in the createAlias event.
*
* @author Praveen Babu Kusuma
* @version 1.0.0
*
* http://www.javahome.co.nr
* http://praveen.awardspace.com
*/
public final class CRUDEventDispatchAction extends EventDispatchAction {
public ActionForward create(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception {
// Code for Create Employee follows
System.out.println("I am in CRUDEventDispatchAction - create");
return ( mapping.findForward("success") );
}
...
}
0 comments:
Post a Comment