What are the differences between DispatchAction and LookupDispatchAction in Struts Framework?


Dispatch Action
LookupDispatchAction
 
It’s a parent class of  LookupDispatchAction
Subclass of Dispatch Action
DispatchAction provides a mechanism for grouping a set of related functions into asingle action, thus eliminating the need to create separate actions for each function.
An abstract Action that dispatches to the subclass mapped executes method. This is useful in cases where an HTML form has multiple submit buttons with the same name. The button name is specified by the parameter property of the corresponding ActionMapping.
If not using Internalization functionality then dispatch action is more useful.
 
Lookup Dispatch Action is useful when we are using Internalization functionality
 
DispatchAction selects the method to execute depending on the request parameter valuewhich is configured in the xml file.
LookupDispatchAction looks into the resource bundle file and find out the corresponding key name. We can map this key name to a method name by overriding the getKeyMethodMap() method. 
DispatchAction is not useful for I18N
 
LookupDispatchAction is used for I18N
 
Find the DispatchAction Example here
Others Posts:

6 thoughts on “What are the differences between DispatchAction and LookupDispatchAction in Struts Framework?

  1. Raghu June 20, 2013 / 11:21 am

    good one

  2. gani k October 2, 2013 / 1:37 pm

    Action Vs DispatchAction?

  3. Bajju June 23, 2016 / 9:42 am

    That’s given in javarevisited. Its not clear to me, Any other good way of difference ?

  4. kajal September 16, 2017 / 7:41 am

    why DispatchAction is not useful for I18N Can anyone explain here…?

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.