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
Where should struts xml be placed?
What is difference between interceptors and filters?
What should be the name of xml file used for validation in struts?
what is ACID test for fresh engineers??what is the pattern??
Is struts compatible with other java technologies?
What is s token?
What do you mean by a custom tag?
What is the purpose of @key?
What is the purpose of @intrangefieldvalidator annotation?
Explain design patterns which is used in struts?
How exceptions are handled in struts application?
When should we use SwtichAction?
What is difference between spring and struts?
What’s the utilization of resource bundle properties file in struts validation structure?
What is the purpose of @beforeresult?