InterviewSolution
| 1. |
What Are The Components Of Struts? |
|
Answer» Struts is based on the MVC design pattern. Struts components can be categories into Model, View and CONTROLLER. Model: Components like business logic / business processes and data are the part of Model. View: JSP, HTML ETC. are part of View Controller: ACTION Servlet of Struts is part of Controller components which works as front controller to HANDLE all the REQUESTS. Struts is based on the MVC design pattern. Struts components can be categories into Model, View and Controller. Model: Components like business logic / business processes and data are the part of Model. View: JSP, HTML etc. are part of View Controller: Action Servlet of Struts is part of Controller components which works as front controller to handle all the requests. |
|