why we use struts in our web application , means what was
drawbacks of servlet ...pls answer
Answer / 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 |
Provide some important Struts2 constants that you have used?
Is struts mvc framework?
How can we display validation errors on jsp page?
What are the classes used as part of struts framework ?
If we close the browser,when the specific user session is active.Again if we open browse how to retrive it same user??what code i have to da???
What is the struts in java?
what is use of assert keyword in java..?
What is switchaction?
What are the major differences between html tags and strut specific html tags?
why do we typecast ActionForm into out plain java bean class in Action class?
Can you give an overview of how a struts application flows?
How is the mvc design pattern used in struts framework?