|
@@ -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) {
|