What is MVC Architecture?
Answer Posted / deepak
This MVC architecture is just a virtual representation of
an application.
Consists of 3 parts:
1> Model
2> View
3> Controller
The main motive of implementing the MVC Architecture is to
seperate the application data as well as the bussiness
logic from the presentation data for the user.
Model: When someone declares and defines the class
attribute names as well as the methods in order to define
the underlying bussiness logic for the problem statement(in
java).
View: This the output what the client observes or views on
his system or terminal.Thsi is the GUI interface that the
client directly interacts with.
Controller: Is the medium of interaction between the user
view and the bussiness logic . In other words , it is the
medium of interaction vbetween the model and the view. It
retrives the information from the view and sends it to the
model for its processing.It ikntercepts user requests and i
turn control bussiness objects to fulfill these
requirements.
| Is This Answer Correct ? | 7 Yes | 12 No |
Post New Answer View All Answers
What is the forward action utilized for?
Are the struts tags xhtml compliant ?
What is struts?
What are the differences between http direct and http indirect?
Are actions thread safe?
When it’s useful to use IncludeAction?
Describe the basic steps used to create a tiles application?
Explain about the
What are action errors?
What is http forward?
How many instances of servlet usually run in a struts application ?
Why are frameworks used?
What are the components of struts?
Why actionservlet is singleton in struts?
how to develop the submit and search operations in single jsp using struts?