Shared Tutorials New
Website Development
2D & 3D Graphics
Audio & Video Editing
Databases
Desktop Programming
Operating Systems
Business Applications
Miscellaneous
Selected Reading
© 2011 TutorialsPoint.COM
|
Shared Tutorials Directory
Tutorials Shared by the Community
-
The front controller design pattern means that all requests that come for a resource in an application will be handled by a single handler and then di
http://extreme-java.blogspot.com/2011/04/understanding-front-controlle...
Tutorial Statistics
The front controller design pattern means that all requests that come for a resource in an application will be handled by a single handler and then dispatched to the appropriate handler for that type of request. The front controller may use other helpers to achieve the dispatching mechanism.
While reading the brief overview you may have thought about ActionServlet in Struts 1 or Dispatchers in Struts 2. Yes both of them are implementations of Front controller design pattern. But most of the developers that I have interacted to (specially the beginners) end their thought process of Front Controller at Struts only. More detail...
|
|
|