mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 03:01:12 +00:00
Co-authored-by: Mayankchoudhary294 <mayankchoudhary4302@example.com>
This commit is contained in:
@@ -25,14 +25,14 @@
|
||||
package com.iluwatar.front.controller;
|
||||
|
||||
/**
|
||||
* The Front Controller is a presentation tier pattern. Essentially it defines a controller that
|
||||
* The Front Controller is a presentation tier pattern. Essentially, it defines a controller that
|
||||
* handles all requests for a website.
|
||||
*
|
||||
* <p>The Front Controller pattern consolidates request handling through a single handler object (
|
||||
* {@link FrontController}). This object can carry out the common the behavior such as
|
||||
* authorization, request logging and routing requests to corresponding views.
|
||||
* {@link FrontController}). This object can carry out common behavior such as authorization,
|
||||
* request logging and routing requests to corresponding views.
|
||||
*
|
||||
* <p>Typically the requests are mapped to command objects ({@link Command}) which then display the
|
||||
* <p>Typically, the requests are mapped to command objects ({@link Command}) which then display the
|
||||
* correct view ({@link View}).
|
||||
*
|
||||
* <p>In this example we have implemented two views: {@link ArcherView} and {@link CatapultView}.
|
||||
|
||||
Reference in New Issue
Block a user