What is MVC Architecture?
Answer Posted / mdsha_asiya
MVC stands for Model(bean,EJB),View(Html,Jsp),Controller
(Servlet).MVC pattern is a collabartion of three components
model,view,controller.MVC pattern is a sequence of action
interactions starting with view,then controller and then to
model based on the data persistence.
MVC is an approach for developing interactive application
ie it results in events through user interactions.Model is
responsible for holding the application state,View is for
displaying the current model and controller handles the
event.
| Is This Answer Correct ? | 157 Yes | 32 No |
Post New Answer View All Answers
What is switchaction?
How interceptor works in struts 2?
What are the differences between Struts1 and Struts2 or how Struts2 is better than Struts1?
What does params interceptor?
Explain architecture of struts2?
Why struts 1 classes are not thread safe whereas struts 2 classes are thread safe?
Explain the core end goal while using java struts?
What is struts actionmapping?
What is http redirect?
What's the purpose of execute method of action class?
Describe the two types of formbeans.
Is struts 1 still supported?
Which design pattern is implemented by Struts2 interceptors?
What are the steps of struts installation?
What are pull and push mvc architecture and which architecture does struts2 follow?