Java Struts Question and Answers
1. | What are struts? |
---|---|
|
|
2. | What are the core classes of the struts framework? |
---|---|
Core classes of struts framework are
|
|
3. | What are the components of struts? |
---|---|
Struts is based on the MVC design pattern. Struts components can be categorized into Model, View and Controller.
|
|
4. | What is LookupDispatchAction? |
---|---|
An abstract Action that dispatches to the subclass mapped execute 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. | |