Tomcat Web 应用程序内部和外部的 log4j

发布于 2024-12-15 05:01:41 字数 1313 浏览 0 评论 0原文

我设置了一个 Web 应用程序来通过 slf4j 和 log4j 进行日志记录。 webapp是用Spring配置的。

相关的 web.xml 内容位于底部。我遇到的问题是,我还想在通过嵌入式 API 启动 tomcat 的应用程序内部使用这个 web 应用程序。一切都找到了,直到网络应用程序关闭,然后我就明白了。

log4j:WARN No appenders could be found for logger    (org.apache.catalina.loader.WebappClassLoader).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

有没有什么方法可以让“网络应用程序内部”的东西与外部的东西很好地配合?

    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>WEB-INF/spring-app-context.xml</param-value>
</context-param>
<context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>/WEB-INF/log4j.properties</param-value>
</context-param>
<context-param>
   <param-name>webAppRootKey</param-name>
   <param-value>bt.r4dws.root</param-value>
</context-param>
    <listener>
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
<listener>
    <listener-class>
        org.springframework.web.context.ContextLoaderListener
  </listener-class>
</listener>

I have a webapp set up to log over slf4j and log4j. The webapp is configured with Spring.

The relevant web.xml stuff is on the bottom. The problem I've got is that I also want to use this webapp inside of an application that launches tomcat itself via the embedded API. Everything is find until the webapp shuts down, and then I get.

log4j:WARN No appenders could be found for logger    (org.apache.catalina.loader.WebappClassLoader).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

Is there some way to make the 'inside the webapp' stuff play nicely with the outside stuff?

    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>WEB-INF/spring-app-context.xml</param-value>
</context-param>
<context-param>
    <param-name>log4jConfigLocation</param-name>
    <param-value>/WEB-INF/log4j.properties</param-value>
</context-param>
<context-param>
   <param-name>webAppRootKey</param-name>
   <param-value>bt.r4dws.root</param-value>
</context-param>
    <listener>
    <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>
<listener>
    <listener-class>
        org.springframework.web.context.ContextLoaderListener
  </listener-class>
</listener>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文