What is MVC Architecture?
Answer Posted / sanjay rathod
The basic reason behind the MVC Model is to seperate the
business logic from presentation loic.
In MVC I-> The Jsp is going work just like the Controller
because request and response is get handled by JSP itself
and only model i.e database part is different than view and
controller,means the overall MVC I architecture contains
only two componants.
In MVC II->The model,view and Controller are seperated from
each other,i.e business logic and presentation logic are
seperate and database part are different from each other.
Model->Database,java bean,EJB
View-->JSP,HTML Pages
Controller-->Servlet Controller(Action Servlet)
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
How can we display all validation errors to user on jsp page?
How is the mvc design pattern used in struts framework?
Where can I get help with struts?
Does apache tomcat use struts?
What is the difference between struts1 and struts2?
What is the difference between struts and spring? Explain
What do you mean by dynaactionform?
How we can configured action mapping in struts?
Why do we need struts?
What are the reasons for an error message not being displayed while developing struts application?
Which components are available using actioncontext map?
What are the steps required for setting up validator framework in struts?
Does Struts2 action and interceptors are thread safe?
How we can controlled duplicate form submission in struts?
What is meant by custom tags?