程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> MyBatis:打印SQL 日志,mybatissql

MyBatis:打印SQL 日志,mybatissql

編輯:JAVA綜合教程

MyBatis:打印SQL 日志,mybatissql


配置Log4J比較簡單, 比如需要記錄這個mapper接口的日志:

package org.mybatis.example;
public interface BlogMapper {
  @Select("SELECT * FROM blog WHERE id = #{id}")
  Blog selectBlog(int id);
}

 

只要在應用的classpath中創建一個名稱為log4j.properties的文件, 文件的具體內容如下:

# Global logging configuration
log4j.rootLogger=ERROR, stdout
# MyBatis logging configuration...
log4j.logger.org.mybatis.example.BlogMapper=TRACE
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

 

添加以上配置後,Log4J就會把 org.mybatis.example.BlogMapper 的詳細執行日志記錄下來,對於應用中的其它類則僅僅記錄錯誤信息。

也可以將日志從整個mapper接口級別調整到到語句級別,從而實現更細粒度的控制。如下配置只記錄 selectBlog 語句的日志:

log4j.logger.org.mybatis.example.BlogMapper.selectBlog=TRACE

 

與此相對,可以對一組mapper接口記錄日志,只要對mapper接口所在的包開啟日志功能即可:

log4j.logger.org.mybatis.example=TRACE

 

某些查詢可能會返回大量的數據,只想記錄其執行的SQL語句該怎麼辦?為此,Mybatis中SQL語 句的日志級別被設為DEBUG(JDK Logging中為FINE),結果日志的級別為TRACE(JDK Logging中為FINER)。所以,只要將日志級別調整為DEBUG即可達到目的:

log4j.logger.org.mybatis.example=DEBUG

 

要記錄日志的是類似下面的mapper文件而不是mapper接口又該怎麼呢?

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
  PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.mybatis.example.BlogMapper">
  <select id="selectBlog" resultType="Blog">
    select * from Blog where id = #{id}
  </select>
</mapper>

 

對這個文件記錄日志,只要對命名空間增加日志記錄功能即可:

log4j.logger.org.mybatis.example.BlogMapper=TRACE

 

進一步,要記錄具體語句的日志可以這樣做:

log4j.logger.org.mybatis.example.BlogMapper.selectBlog=TRACE

 

看到了吧,兩種配置沒差別!

配置文件log4j.properties的余下內容是針對日志格式的,這一內容已經超出本 文檔范圍。關於Log4J的更多內容,可以參考Log4J的網站。不過,可以簡單試一下看看,不同的配置 會產生什麼不一樣的效果。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved