使用ServletContextListener和&amp ;;在contextDestroyed上没有日志输出。 SLF4J

时间:2015-11-21 14:46:43

标签: java servlets logging slf4j log4j2

我正在尝试向记录器写一条消息(Vaadin)servlet已经停止,这是使用SLF4J和Log4j2。

为此,我使用ServletContextListener在应用程序启动时记录消息。但是在登录contextDestroyed方法时我无法获得任何输出......这是我的实现:

@WebListener
public class VaadinLogger implements ServletContextListener {

    private static final Logger logger = LoggerFactory.getLogger(VaadinLogger.class);

    @Override
    public void contextInitialized(ServletContextEvent contextEvent) {
        // Remove appenders from JUL loggers
        SLF4JBridgeHandler.removeHandlersForRootLogger();

        // Install bridge
        SLF4JBridgeHandler.install();

        // Get servlet context
        ServletContext context = contextEvent.getServletContext();

        // Retrieve name
        String name = context.getServletContextName();

        // Log servlet init information
        logger.info("Start \"{}\"", name);
    }

    @Override
    public void contextDestroyed(ServletContextEvent contextEvent) {
        // Get servlet context
        ServletContext context = contextEvent.getServletContext();

        // Retrieve name
        String name = context.getServletContextName();

        // Log servlet destroy information
        logger.info("End \"{}\"{}", name, System.lineSeparator()));

        // Uninstall bridge
        SLF4JBridgeHandler.uninstall();
    }
}

此时,我猜这可能是因为在调用点contextDestroyed时,不再可能进行日志记录,因为它们已被垃圾收集器销毁。

所以现在我的问题是,是否有可能在销毁上下文之前记录servlet已停止,或者在log4j2记录器被销毁之前使contextlistener执行?

提前致谢!

2 个答案:

答案 0 :(得分:0)

首先,您的类路径中是否有log4j 2.x api,核心和Web jar? log4j-web-2.x.jar还注册了一个上下文侦听器,用于在卸载Web应用程序时关闭日志记录子系统。

如果你的听众在那之后跑,你就不能再记录任何东西了。

您可以通过在log4j2配置文件中设置<Configuration status="trace" ...来检查发生了什么。

答案 1 :(得分:0)

从 log4j 2.14.1 开始,您可以禁用自动关闭并添加一个监听器来停止记录器。

<context-param>
    <!-- auto-shutdown stops log4j when the web fragment unloads, but that
         is too early because it is before the listeners shut down. To 
         compensate, use a Log4jShutdownOnContextDestroyedListener and
         register it before any other listeners which means it will shut
         down *after* all other listeners. -->
    <param-name>isLog4jAutoShutdownDisabled</param-name>
    <param-value>true</param-value>
</context-param>    

<listener>
   <!-- ensure logging stops after other listeners by registering
        the shutdown listener first -->
    <listener-class>
       org.apache.logging.log4j.web.Log4jShutdownOnContextDestroyedListener
    </listener-class>
</listener>
<listener>
    <listener-class>
        org.springframework.web.context.ContextLoaderListener
    </listener-class>
</listener>