Websphere 所有日志都将转到 SystemOut.log

发布于 2024-12-15 16:48:19 字数 132 浏览 1 评论 0原文

我在我的应用程序中使用 Log4j,并有一些用于调试和错误的附加程序。我在tomcat上测试过,工作正常。在各自的文件中生成所有日志。但是当我在 WAS6.1 上部署代码时,所有日志仅在 SystemOut.log 内生成。

请帮忙!

I am using Log4j in my application and have some appenders for debug and error. I tested this on tomcat and working fine. Generating all logs in their respective files. But when I deploy code on WAS6.1 all logs are getting generated only inside SystemOut.log.

Please help!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳男子 2024-12-22 16:48:19

问题可能是 WebSphere 6.1 在内部使用 Jakarta Commons Logging (JCL),如果您的任何代码或第 3 方库也使用 JCL,那么 WebSphere 的配置会与尝试使用 log4j 的应用程序发生冲突。如果发生这种情况,您将看到您所看到的一切。

有多个 参考文献博客文章描述了解决此问题的方法。我们发现最简单的方法是在 Web 应用程序的 META-INF/services 目录中创建一个名为 org.apache.commons.logging.LogFactory 的文件(在WAR 存档的根目录)。该文件必须包含以下行:(

org.apache.commons.logging.impl.Log4jFactory

至少对于较新版本的 WebSphere...)另一个关键是 JCL jar 必须从与 log4j jar 相同的位置加载。例如,要么都来自 WEB-INF/lib,要么都来自共享库。因此,您不能依靠从 WebSphere 自己提供的副本加载 JCL。如果它们是由 不同的类加载器,它们无法正确地看到彼此。

The problem might be that WebSphere 6.1 uses Jakarta Commons Logging (JCL) internally, and if any of your code or 3rd-party libraries also use JCL, WebSphere's configuration conflicts with your application trying to use log4j. If this is happening, you'll see exactly what you're seeing.

There are multiple references and blog posts that describe ways to address this. We've found the simplest to be creating a file named org.apache.commons.logging.LogFactory in the META-INF/services directory of your web application (in the root of the WAR archive). This file must contain the line:

org.apache.commons.logging.impl.Log4jFactory

(At least with newer versions of WebSphere...) Another key is that the JCL jar must be loaded from the same location as the log4j jar. e.g. either both from WEB-INF/lib or both from a shared library. Thus, you can't fall back on loading JCL from WebSphere's own provided copy. If they're loaded by different classloaders, they can't properly see each other.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文