previous |
index
The "Controller" Part of MVC
Generally a Java servlet with the following duties:
- Intercepts HTTP requests from the client
- Translates requests into specific business operations
- Either invokes the business operation or delegates to a handler
- Helps to select the next view to display to client
- Returns view to the client
previous |
index