我喜欢 Stripes,但我使用 sl4j/logback 进行日志记录,我有哪些选择?
因为 stripes 带有 commong-logging。在没有公共日志记录的情况下,在 Web 应用程序中使用 stripe 有哪些选择?如何用 sl4j 日志库替换它?
Since stripes comes with commong-logging. What are my options in using stripes in a web applications without commons logging. How can I replace it with sl4j logging library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了将 Commons Logging 日志重定向到 SLF4J,您需要从类路径中删除 Commons Logging 并添加 JCL-over-SLF4J 桥。
在这里你可以找到Spring类似问题的解决方案:记录依赖关系在春天。
In order to redirect Commons Logging log to SLF4J, you need to remove Commons Logging from the classpath and add JCL-over-SLF4J bridge.
Here you can find a solution of similar problem for Spring: Logging Dependencies in Spring.