0% found this document useful (0 votes)
27 views1 page

MVC Pattern

Uploaded by

kamizboobalan333
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views1 page

MVC Pattern

Uploaded by

kamizboobalan333
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

MVC pattern:

MVC is the most popular design pattern using for creating web development.
Abbreviation of MVC (Model View Controller).It is mainly used for code readability.

Using MVC we can testing the applications easily.

Model:

Model layer is used to store the data. Model is a normal java encapsulation
class. there is private variables and setter,getter methods.
It is mainly used for security purpose.

Controller:

Controller layer is the intermediate layer between view and model layer.
we write the business logics in this layer (i.e.) Database connectivity, rendering
corresponding view page, validating data etc.

View:

View is also known as presentation layer. which is used to rendering the data
through view layer.

You might also like