SqlLogInterceptor
@Component
@Intercepts({
@Signature(type = StatementHandler.class, method = "query", args = {Statement.class, ResultHandler.class}),
@Signature(type = StatementHandler.class, method = "update", args = {Statement.class})
})
@Slf4j
public class SqlLogInterceptor implements Interceptor {
@Override
public Object intercept(Invocation invocation) throws Throwable {
long startTime = System.currentTimeMillis();
Object retVal = invocation.proceed();
try {
long endTime = System.currentTimeMillis();
long time = endTime - startTime;
String traceId = TraceIdUtil.getTraceId();
if (StringUtils.isNotEmpty(traceId)) {
log.info("time" + time);
}
}catch (Exception e){
log.error("error", e);
}
return retVal;
}
}