What is the difference between servlet config and servlet
context.
Answer Posted / vkrishna88
ServletConfig:
1)An object of ServletConfig exists one per Servlet...
2)An object of ServletConfig will be created when
init(ServletConfig)method is executed...
3)The data to a servlet which related to ServletConfig
object must be written in <init-param>....</init-param> with
in <servlet>…</servlet> of web.xml....
4)An object of ServletConfig will exists as long as a
specific Servlet is executing.
ServletContext:
1)An object of ServletContext exists one per web application....
2)An object of ServletContext will be created when we deploy
the web application in servlet container or servlet
execution environment......
3)The common data or global data related to ServletContext
must be written under <context-param>…</context-param> with
in <web-app>....</web-app> and outside of
<servlet>...</servlet> of web.xml....
4)An object of ServletContext will exists until the entire
web application completed its execution.....
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how many jsp scripting elements are there and what are those?
How do you create a cookie using servlet?
How does java thread pool work?
How can the referrer and the target urls be used in servlet?
What is the use of servlet context?
Differentiate between the print writer and servlet output stream?
What do you mean by deployment descriptor?
What is called Scriptlet?
hi actully i hav form columns with origin and destination names .as like as i need to create one more column with name amount. my requirement is when i select origin and destination columns automatically i need to get amount from database.how can i. please tel me with relative code
What is meant by a servlet?
What is servlet configuration?
How to get the server information in a servlet?
Why servlet is mostly used?
What’s the difference between genericservlet and httpservlet?
What is http servlet? Explain with the help of an example.