Package org.apache.logging.log4j.web
Class WebLoggerContextUtils
java.lang.Object
org.apache.logging.log4j.web.WebLoggerContextUtils
Convenience methods for retrieving the 
LoggerContext associated with a
 particular ServletContext. These methods are most particularly useful for asynchronous servlets where the
 Thread Context ClassLoader (TCCL) is potentially different from the TCCL used by the
 Servlet container that bootstrapped Log4j.- Since:
- 2.0.1
- 
Method SummaryModifier and TypeMethodDescriptioncreateExternalEntry(jakarta.servlet.ServletContext servletContext) static LoggerContextgetRequiredWebLoggerContext(jakarta.servlet.ServletContext servletContext) Finds the mainLoggerContextconfigured for the given ServletContext.static jakarta.servlet.ServletContextGets the currentServletContextif it has already been assigned to a LoggerContext's external context.static org.apache.logging.log4j.web.Log4jWebLifeCyclegetWebLifeCycle(jakarta.servlet.ServletContext servletContext) Finds or initializes theLog4jWebLifeCyclesingleton for the given ServletContext.static LoggerContextgetWebLoggerContext(jakarta.servlet.ServletContext servletContext) Finds the mainLoggerContextconfigured for the given ServletContext.static voidsetServletContext(LoggerContext lc, jakarta.servlet.ServletContext servletContext) static RunnablewrapExecutionContext(jakarta.servlet.ServletContext servletContext, Runnable runnable) Wraps a Runnable instance by setting its thread contextLoggerContextbefore execution and clearing it after execution.
- 
Method Details- 
getWebLoggerContextFinds the mainLoggerContextconfigured for the given ServletContext.- Parameters:
- servletContext- the ServletContext to locate a LoggerContext for
- Returns:
- the LoggerContext for the given ServletContext
- Since:
- 2.0.1
 
- 
getRequiredWebLoggerContextpublic static LoggerContext getRequiredWebLoggerContext(jakarta.servlet.ServletContext servletContext) Finds the mainLoggerContextconfigured for the given ServletContext.- Parameters:
- servletContext- the ServletContext to locate a LoggerContext for
- Returns:
- the LoggerContext for the given ServletContext or nullif none was set
- Throws:
- IllegalStateException- if no LoggerContext could be found on the given ServletContext
- Since:
- 2.0.1
 
- 
getWebLifeCyclepublic static org.apache.logging.log4j.web.Log4jWebLifeCycle getWebLifeCycle(jakarta.servlet.ServletContext servletContext) Finds or initializes theLog4jWebLifeCyclesingleton for the given ServletContext.- Parameters:
- servletContext- the ServletContext to get the Log4jWebLifeCycle for
- Returns:
- the Log4jWebLifeCycle for the given ServletContext
- Since:
- 2.0.1
 
- 
wrapExecutionContextpublic static Runnable wrapExecutionContext(jakarta.servlet.ServletContext servletContext, Runnable runnable) Wraps a Runnable instance by setting its thread contextLoggerContextbefore execution and clearing it after execution.- Parameters:
- servletContext- the ServletContext to locate a LoggerContext for
- runnable- the Runnable to wrap execution for
- Returns:
- a wrapped Runnable
- Since:
- 2.0.1
 
- 
createExternalEntry
- 
setServletContextpublic static void setServletContext(LoggerContext lc, jakarta.servlet.ServletContext servletContext) 
- 
getServletContextpublic static jakarta.servlet.ServletContext getServletContext()Gets the currentServletContextif it has already been assigned to a LoggerContext's external context.- Returns:
- the current ServletContext attached to a LoggerContext or nullif none could be found
- Since:
- 2.1
 
 
-