Example & Tutorial understanding programming in easy ways.

What are the components of Struts Framework?

Struts framework is composed of following components:

1. Based on the Model-View-Controller (MVC) design paradigm, distinctly separating all three levels:
Model: application state
View: presentation of data (JSP, HTML)
Controller: routing of the application flow
2. A request handler provided by the application developer that is used to  mapped to a particular URI.
3. A response handler which is used to transfer the control to another resource which will be responsible for completing the response.
4. A tag library which helps developers to create the interactive form based applications with server pages.
5. Java Servlets
6. JSP (Java Server Pages)
7. Custom Tags
8. Message Resources


Read More →