MVC Design Pattern java
MVC Design Pattern:-
MVC Design Pattern made with three components (Layer ).
M ---> Denotes Model components
V ---> Denotes View components
C ----> Denotes Controller components
Model component:-
In Model component we represent data objects. Model component is being manipulated and present to the user.
View component:-
View component represent data on html pages which is manipulate in the Model component.
Controller components:-
Controller component handle all the things from handle request and response to client.
MVC Design Pattern made with three components (Layer ).
M ---> Denotes Model components
V ---> Denotes View components
C ----> Denotes Controller components
Model component:-
In Model component we represent data objects. Model component is being manipulated and present to the user.
View component:-
View component represent data on html pages which is manipulate in the Model component.
Controller components:-
Controller component handle all the things from handle request and response to client.
Comments
Post a Comment