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
What are the some useful annotations introduced in struts2?
What are the differences between http direct and http indirect?
Why are springs better than struts?
What is difference between interceptors and filters?
Explain about the
What is the role of a handler in mvc based applications?
What are the components of struts framework?
What is the purpose of @conversion annotation annotation?
What are action errors?
What are the benefits of Struts framework?
How to convert struts to spring mvc?
What is difference between spring and struts?
Explain about tiles?
How to build struts application in eclipse?
How does struts2 token work?