java EAR 应用程序中的 Logback
在 Ear 应用程序中捆绑 logback 的最佳方法是什么? 应用程序封装了Web应用程序(war文件)和ejb模块? 通过在 Web 应用程序中使用 logback.xml,我只能从该应用程序获取日志,而不是从 ejb 模块获取日志。对于这种情况有一些最佳实践吗?
谢谢。
What is the best way to bundle logback in an ear application.
The application encaspulates web applications (war files) and ejb modules?
By having the logback.xml in the web application I only get logs from that application but not from the ejb modules. Is theer some best practices for this scenarios?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我同意。
还,
你可以将这个特殊的jar打包到ear的lib目录下进行爆炸。
这样,您就可以轻松地更改该文件。
笔记:
如果您计划动态更改 logback.xml 文件而不需要重新部署,则可以在 logback.xml 中插入 scan="true"
I agree.
Also,
you may package this special jar packaged inside ear's lib directory exploded.
This way, you may change this file easily.
Note:
If you plan to change the logback.xml files dynamically without the need to redeploy, you may insert scan="true" in logback.xml
最好将其放在耳朵内的一个罐子中。理想情况下,您可以有一个特殊的 jar 用于内部配置 - 您的属性、Spring 元数据(如果有)等;这也是保存
logback.xml
的完美位置。logback 库也是如此——它应该是共享的,这样管理起来更容易。
It's best to keep it in one of the jars inside an ear. Ideally, you could have a special jar for internal configuration — your properties, Spring metadata (if any), etc.; that would be a perfect place to keep
logback.xml
as well.Same goes for the logback library, too — it should be shared, it's easier to manage it like that.