My Struts Notes
Struts key points which I learned for an interview. Its My Notes Home ============================================================================= What is the disadvantage of DispatchAction ============================================================================= The main constraint in the DispatchAction is the method name in the action class and the button name in the jsp page should be the same. But in LookupDispatchAction, we can have different names for the buttons and the methods. Home ============================================================================= What is LookupDispatchAction in struts ============================================================================= Steps 1) Your action class has to extends to LookupDispatchAction 2) You have to implement protected Map getKeyMethodMap() public class UserAction extends LookupDispatchAction { protected Map getKeyMethodMap() { Map map = new HashMap(); map.put("UserEmployeeForm.add", ...