Activiti 的日志配置
我们开发了一个基于 Spring 的应用程序,也使用 Aiviti BPM 进行流程管理。 Activiti 附带了一个处理所有 TimeBoundary 事件的 JobAcquisitionThread。 该线程定期将 DEBUG 消息记录到控制台。 Activiti(使用 java.util.logging)似乎对我们的 spring 框架日志记录(使用 log4j)配置没有反应。 如何配置Activiti使用与spring相同的配置?
We develop a spring based application also using Aciviti BPM for process management.
Activiti ships with a JobAcquisitionThread handling all TimeBoundary events.
This thread periodically logs DEBUG messages to the console.
Activiti (which uses java.util.logging) seems not to react on our spring framework logging (which uses log4j) config.
How can Activiti be configured to use the same config as spring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Log4j 和 java Logging 除了记录日志的目的之外没有任何共同点。
因此,如果您使用 log4j 配置某些内容,它不会影响 java 日志记录 api。您需要配置 java 日志记录。默认情况下,这是通过名为
logging.properties
的文件完成的。 (当然它还有 log4j 之外的其他语法。)请参阅 Stack Overflow 问题:How to send java.util.logging to log4j? 了解如何桥接日志消息的一些方法,
Log4j and java Logging have nothing in common but the gole to log.
So it does not influent the java logging api if you configure somehting with log4j. You need to configue java logging. This is done by default with an file called
logging.properties
. (And of course it has an other syntax then log4j.)See this Stack Overflow question: How to send java.util.logging to log4j? for some ways how to bridge the log messages,
这又怎样呢。
What about this.