使用 GWT 记录 iBatis (myBatis) 事件

发布于 2024-09-04 12:49:30 字数 29 浏览 4 评论 0原文

如何在 GWT 托管模式下打开日志记录查询?

How to turn on logging queries in GWT hosted mode?

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

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

发布评论

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

评论(1

热风软妹 2024-09-11 12:49:30

iBATIS 框架通过模仿 Apache Log4J 的内部日志机制记录其与数据库的交互。内部日志记录机制可以使用三个内置记录器之一或外部日志记录包(例如 Apache Log4J)。为了让 iBATIS 生成日志消息,应用程序的配置文件(log4j.properties 或 log4j.xml)必须放入默认包中,并包含以下内容:


log4j.appender.C=org.apache.log4j.ConsoleAppender
log4j.appender.C.layout=org.apache.log4j.PatternLayout
log4j.appender.C.layout.ConversionPattern=[%p] %c - %m - Date: %d %n
log4j.rootLogger=TRACE, C

这是配置。除此之外,您必须下载 log4j 库并将其放入类路径中。目前最新版本是log4j-1.2.16.jar。

The iBATIS framework records its interaction with the database through an internal logging mechanism patterned after Apache Log4J. The internal logging mechanism can use one of the three built-in loggers or external logging packages such as Apache Log4J. In order for iBATIS to generate log messages, the application's config file (log4j.properties or log4j.xml) must be put in default package and contains for example:


log4j.appender.C=org.apache.log4j.ConsoleAppender
log4j.appender.C.layout=org.apache.log4j.PatternLayout
log4j.appender.C.layout.ConversionPattern=[%p] %c - %m - Date: %d %n
log4j.rootLogger=TRACE, C

That was the configuration. Apart of that you must download log4j library and put it into your classpath. At the moment the newest version is log4j-1.2.16.jar.

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