Преглед на файлове

修复logdbinspector报错问题

NorthLan преди 6 години
родител
ревизия
4ceb2cc3f7
променени са 1 файла, в които са добавени 26 реда и са изтрити 22 реда
  1. 26 22
      zen-api/src/main/kotlin/com/gxzc/zen/logging/aop/LogDBInterceptor.kt

+ 26 - 22
zen-api/src/main/kotlin/com/gxzc/zen/logging/aop/LogDBInterceptor.kt

@@ -78,29 +78,33 @@ class LogDBInterceptor : Interceptor {
             var tableName: String? = null
             val table: Table?
 
-            // 操作类型
-            when (mappedStatement.sqlCommandType) {
-                SqlCommandType.SELECT -> {
-                    val plainSelect = (statement as Select).selectBody as PlainSelect
-                    table = (plainSelect.fromItem as Table)
-                    type = LogConstants.DB_TYPE_SELECT
-                }
-                SqlCommandType.DELETE -> {
-                    table = (statement as Delete).table
-                    type = LogConstants.DB_TYPE_DELETE
-                }
-                SqlCommandType.INSERT -> {
-                    table = (statement as Insert).table
-                    type = LogConstants.DB_TYPE_INSERT
-                }
-                SqlCommandType.UPDATE -> {
-                    table = (statement as Update).tables[0]
-                    type = LogConstants.DB_TYPE_UPDATE
-                }
-                else -> {
-                    // 直接跳过
-                    return invocation.proceed()
+            try {
+                // 操作类型
+                when (mappedStatement.sqlCommandType) {
+                    SqlCommandType.SELECT -> {
+                        val plainSelect = (statement as Select).selectBody as PlainSelect
+                        table = (plainSelect.fromItem as Table)
+                        type = LogConstants.DB_TYPE_SELECT
+                    }
+                    SqlCommandType.DELETE -> {
+                        table = (statement as Delete).table
+                        type = LogConstants.DB_TYPE_DELETE
+                    }
+                    SqlCommandType.INSERT -> {
+                        table = (statement as Insert).table
+                        type = LogConstants.DB_TYPE_INSERT
+                    }
+                    SqlCommandType.UPDATE -> {
+                        table = (statement as Update).tables[0]
+                        type = LogConstants.DB_TYPE_UPDATE
+                    }
+                    else -> {
+                        // 直接跳过
+                        return invocation.proceed()
+                    }
                 }
+            } catch (e: Throwable) {
+                return invocation.proceed()
             }
 
             if (table != null) {