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
What are different ways to create Action classes in Struts2?
State the procedure for using forward attribute of link tag’s.
What is switchaction?
Will the struts tags support other markup languages such as wml ?
How does struts2 token work?
What are the classes used as part of struts framework ?
What does validation interceptor?
How is a lookup dispatch action created?
Can you explain struts validator framework?
In which method of action class the business logic is executed?
What is controller in struts2?
What is struts?
What is the role of action class?
What is the use of lookupdispatchaction?
What are the core components of a struct2 based application?