Answer Posted / deepa vg
The web.xml is called the deployment descriptor. It is used
to provide details about the deployment of the web
application.
At a very minimum, it tells the servlet container the
version of the servlet specifications to use for the app.
Additionally, since you are using servlets, you have to use
it to provide details about the class of your servlets, and
the URL to use for mapping HTTP requests to the servlet.
You also can specify security roles and limited access for
pages, define attributes to store application-wide, define
specific pieces of information for JSPs, define MIME-Type-
Mappings, Welcome Page file names, and other details about
the Servlet Context.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is a Hash Table? What are the advantages of using a hash table?
What is the relationship between clipping and repainting under awt?
What is the full name of java?
Which is the best sorting technique in java?
explain multi-threading in java?
Why hashmap is used in java?
What is the final class?
Why to use nested classes in java? (Or) what is the purpose of nested class in java?
What is a static class in java?
What is arrays fill in java?
What are different types of arrays?
Is class forname reflection?
What are scalar data types?
Explain the difference between intermediate and terminal operations in java8?
This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual C() { } }