why we use struts in our web application , means what was
drawbacks of servlet ...pls answer
Answer Posted / maneesha pandey
Programming web applications using servlets only is a very
hard thing, since you will have to write your HTML code
inside the servlet, which will produce complex, unreadable
and unmaintainable code.
The same thing is with JSP. If you program a web application
using JSP alone, you'll have to put your java code in JSP
pages, which will also be very hard to read and maintain.
This was the reason of the rise of the model 2
architecture(srtuts), where the servlet controls the flow of
the request, calls a model class to do the business logic,
decides which view (jsp or other) to send to the user, and
then sends the response to the user. This is known as the
MVC (Model-View-Controller) design pattern.
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
Briefly tell the two kinds of form beans.
Give the details of xml files used in validator framework?
Does apache struts run on windows?
What is the purpose of @after annotation?
What do struts do?
Where can I get a copy of struts?
What is purpose of execandwait interceptor?
What is value stack?
Is there a particularly good ide to use with struts?
Why struts 1 classes are not thread safe whereas struts 2 classes are thread safe?
Does struts include its own unit tests?
What is the use of form bean in struts?
What is the design role played by struts?
What is role of actionservlet?
What kind of mvc is struts 2?