log4jdbc
log4jdbc是google开源的用于专们打印sql日志
的工具jar包,使用方法很简单。
第一步:引入maven包,如下:
com.googlecode.log4jdbc log4jdbc1.2
第二步:更改jdbc的驱动名称和连接名称,主要
是标红部分:(jdbc.properties)
driverClassName=net.sf.log4jdbc.DriverSpyjdbcUrl=jdbc:log4jdbc:mysql://192.168.99.11:3306/nf?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&autoReconnect=true&serverTimezone=Asia/Shanghai
第三步:在logback.xml中加入如下配置,各参数
说明如下:
监控sql日志输出
logger 描述
jdbc.sqlonly 仅仅记录 SQL 语句,会将占位符替换为实际的参数
jdbc.sqltiming 包含 SQL 语句实际的执行时间
jdbc.audit 除了 ResultSet 之外的所有JDBC调用信息,篇幅较长
jdbc.resultset 包含 ResultSet 的信息,输出篇幅较长
jdbc.connection 输出了 Connection 的 open、close 等信息
-->
以上三步log4jdbc就配置好了,默认关闭,需要
开启时将level级别调至debug即可。
mybatis 插件工具
在IDEA 应用商店中下载安装 插件free mybatis plugin即可。
mybatis 拦截器
这个是直接利用mybatis拦截器的特性实现
@Intercepts({ @Signature(type = Executor.class, method = "update", args = { MappedStatement.class, Object.class })})
public class ExecutorInterceptor implements Interceptor {
private static final Logger logger = LoggerFactory.getLogger(ExecutorInterceptor.class);
@Override
public Object intercept(Invocation arg0) throws Throwable {
Object obj = interceptSqlDuration(arg0);
return obj;
}
/**
* 计算sql执行时长
* @param arg0
* @return
* @throws InvocationTargetException
* @throws IllegalAccessException
*/
private Object interceptSqlDuration(Invocation arg0) throws InvocationTargetException, IllegalAccessException {
MappedStatement mappedStatement = (MappedStatement) arg0.getArgs()[0];
Object parameter = null;
if (arg0.getArgs().length > 1) {
parameter = arg0.getArgs()[1];
}
String sqlId = mappedStatement.getId();
BoundSql boundSql = mappedStatement.getBoundSql(parameter);
Configuration configuration = mappedStatement.getConfiguration();
Object obj = null;
StopWatch watch = new StopWatch();
watch.start();
obj = arg0.proceed();
watch.stop();
String sql = MySql5Hepler.showSql(configuration, boundSql);
logger.debug("\n执行sql:\n{}\n耗时:{}ms",sql, watch.getTotalTimeMillis());
return obj;
}
@Override
public Object plugin(Object arg0) {
return Plugin.wrap(arg0, this);
}
@Override
public void setProperties(Properties properties) {
}
}
以上三种方式,作者推荐使用第一种,后两种插
件的方式可能导致打印的参数和实际执行的参数
内容不一致
领取专属 10元无门槛券
私享最新 技术干货