SlideShare una empresa de Scribd logo
1 de 2
Descargar para leer sin conexión
instanceofjavaforus.blogspot.in http://instanceofjavaforus.blogspot.in/2014/12/servletcontext.html
ServletContext
We can deploy multiple web applications in aservlet container.
Each web application contains its own resources in a seperate environment. This environment called ad Web
Application context or ServletContext.
The resources belongs to the one web application context are not avilable to the other web application
context.
A Servlet context contains zero or more number of servlets. For every servlet object the container creates
seperate servletConfig object.
ServletContext is an interface. this interface implemented by the container by the container provider.
The implemented class allows all servlets in the web application to communicate with the container.
We can store common data into this application and also we can share that data even after request response
objects deletion in the memory.
Configure Context parameters in web.xml file
Methods of ServletContext interface:
1. public String getInitParameter(String name): Returns a String containing a value of the method context-
wide initialization parameter, or null if if parameter does not exist.
2. public Enumeration getInitParameterNames():Returns the names of the context's initialization parameters
as enumeration of string objects , or empty enumeration if context has no initialization parameters.
3. public void setAttribute(String name,Object object):sets the given object in the application scope.
4. public Object getAttribute(String name):Returns the servlet container attribute with the given name , or null
if there is no attribute by that name.
5. public Enumeration getInitParameterNames():Returns the names of the context's initialization parameters
as an Enumeration of String objects.
6. public void removeAttribute(String name):Removes the attribute with the given name from the servlet
context.
7. public int getMajorVersion(): Returns the major version of the Java Servlet API that is servlet container
supports.
8. public int getMinorVersion(): Returns the minor version of the Java Servlet API that is servlet container
supports.
9. public void log(Java.lang.String msg): Writes specified message to a servlet log file, usually an event log.
How to get the object of ServletContext interface:
ServletContext application=getServletConfig().getServletContext();
String driverName=application.getInitParameter("name");

Más contenido relacionado

Destacado

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Destacado (20)

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 

Instanceofjavaforus.blogspot.in servlet context

  • 1. instanceofjavaforus.blogspot.in http://instanceofjavaforus.blogspot.in/2014/12/servletcontext.html ServletContext We can deploy multiple web applications in aservlet container. Each web application contains its own resources in a seperate environment. This environment called ad Web Application context or ServletContext. The resources belongs to the one web application context are not avilable to the other web application context. A Servlet context contains zero or more number of servlets. For every servlet object the container creates seperate servletConfig object. ServletContext is an interface. this interface implemented by the container by the container provider. The implemented class allows all servlets in the web application to communicate with the container. We can store common data into this application and also we can share that data even after request response objects deletion in the memory. Configure Context parameters in web.xml file
  • 2. Methods of ServletContext interface: 1. public String getInitParameter(String name): Returns a String containing a value of the method context- wide initialization parameter, or null if if parameter does not exist. 2. public Enumeration getInitParameterNames():Returns the names of the context's initialization parameters as enumeration of string objects , or empty enumeration if context has no initialization parameters. 3. public void setAttribute(String name,Object object):sets the given object in the application scope. 4. public Object getAttribute(String name):Returns the servlet container attribute with the given name , or null if there is no attribute by that name. 5. public Enumeration getInitParameterNames():Returns the names of the context's initialization parameters as an Enumeration of String objects. 6. public void removeAttribute(String name):Removes the attribute with the given name from the servlet context. 7. public int getMajorVersion(): Returns the major version of the Java Servlet API that is servlet container supports. 8. public int getMinorVersion(): Returns the minor version of the Java Servlet API that is servlet container supports. 9. public void log(Java.lang.String msg): Writes specified message to a servlet log file, usually an event log. How to get the object of ServletContext interface: ServletContext application=getServletConfig().getServletContext(); String driverName=application.getInitParameter("name");