can we create more than ServletContext and ServletConfig in
your application
Answers were Sorted based on User's Feedback
Answer / narendhersharma
ServletContext which is managed by webcontainer, For the
whole web application only one servletcontext will be
there...
In ServletConfig , this is also managed by webcontainer,
for every request object one servletconfig object will be
there..
| Is This Answer Correct ? | 19 Yes | 4 No |
Answer / sunstar
Servlet Context is used per Web apllication so we can't use
more than one Context,Servlet Config is per servlet or per
Jsp so you can use the more than one Config.....:-)
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / naresh
We can not have more than one servletContext in a web
application, but we can have more than one servletConfig
provided there is more than one servlet in the web
application...
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / ravi ranjan kumar rajnish
No, In case of ServletContext Bcoz there is one
ServletContext is for one for whole application.
But yes in case of ServletConfig, bcoz servletconfig is
servlet specific so it can more than one
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / vishal kumar
yes we can create more than one servletcontext for an
application.in case of distributed application,
application's part are deployed on different application
server so in this case every part of application has
different servlet context.so as a whole application consist
many servlet contect.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / ravikiran.chd
no one servlet context per web application we can generate
multiple servlet config objects
| Is This Answer Correct ? | 2 Yes | 4 No |
Can we use servlets in JavaScript?
What is servlet and its use?
Why doesn’t a servlet include main()? How does it work?
Explain the steps involved in placing a servlet within a package?
What are the uses of servlet and what is servlet chaining?
Explain the war file?
What do you mean by deployment descriptor?
What is the difference between 2 types of servlets?
Why do we have servlet filters?
why business logic written using servlets not in jsp. Jsp used for presentation purpose. serlvet used for coding business logic and controller logic. Reason for using servlets in business logic.
Are Servlets Thread Safe? How to achieve thread safety in servlets?
Describe some assignments that are executed by servlet container?