|
@@ -0,0 +1,42 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2011-2020, baomidou (jobob@qq.com).
|
|
|
+ * <p>
|
|
|
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
+ * use this file except in compliance with the License. You may obtain a copy of
|
|
|
+ * the License at
|
|
|
+ * <p>
|
|
|
+ * https://www.apache.org/licenses/LICENSE-2.0
|
|
|
+ * <p>
|
|
|
+ * Unless required by applicable law or agreed to in writing, software
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
+ * License for the specific language governing permissions and limitations under
|
|
|
+ * the License.
|
|
|
+ */
|
|
|
+package com.baomidou.mybatisplus.extension.p6spy;
|
|
|
+
|
|
|
+import com.p6spy.engine.common.ConnectionInformation;
|
|
|
+import com.p6spy.engine.common.StatementInformation;
|
|
|
+import com.p6spy.engine.logging.LoggingEventListener;
|
|
|
+
|
|
|
+import java.sql.SQLException;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 监听事件
|
|
|
+ *
|
|
|
+ * @author nieqiurong 2019/11/10.
|
|
|
+ */
|
|
|
+public class MybatisPlusLoggingEventListener extends LoggingEventListener {
|
|
|
+
|
|
|
+ static final MybatisPlusLoggingEventListener INSTANCE = new MybatisPlusLoggingEventListener();
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onAfterExecuteBatch(StatementInformation statementInformation, long timeElapsedNanos, int[] updateCounts, SQLException e) {
|
|
|
+ //忽略批量执行结果
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onAfterCommit(ConnectionInformation connectionInformation, long timeElapsedNanos, SQLException e) {
|
|
|
+ //忽略提交结果,可以避免打印空sql问题
|
|
|
+ }
|
|
|
+}
|