使用 GWT 记录 iBatis (myBatis) 事件
如何在 GWT 托管模式下打开日志记录查询?
How to turn on logging queries in GWT hosted mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 GWT 托管模式下打开日志记录查询?
How to turn on logging queries in GWT hosted mode?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
iBATIS 框架通过模仿 Apache Log4J 的内部日志机制记录其与数据库的交互。内部日志记录机制可以使用三个内置记录器之一或外部日志记录包(例如 Apache Log4J)。为了让 iBATIS 生成日志消息,应用程序的配置文件(log4j.properties 或 log4j.xml)必须放入默认包中,并包含以下内容:
这是配置。除此之外,您必须下载 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:
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.