MVC Pattern
Model-View-Controller (MVC) which is more popular in the Enterprise Level applications is a classic design pattern often used by applications that need the ability to maintain multiple views of the same data. The MVC pattern hinges on a clean separation of objects into one of three categories — Models for maintaining data Views for displaying all or a portion of the data, and Controllers for handling events that affect the model or view(s). Because of this separation, multiple views and controllers can interface with the same model. Even new types of views and controllers that never existed before can interface with a model without forcing a change in the model design.
How It Works
The MVC abstraction can be graphically represented as follows. This picture will give some brief idea about the MVC design pattern
This Articles was posted on 2:28 AMTuesday, December 4, 2007
|
Labels:
Algorithms,
Experiences,
Java,
Tech
|
0 comments:
Post a Comment