fix: 修复部分缺陷
This commit is contained in:
parent
f72e30efb5
commit
9e0769a7c9
|
@ -67,7 +67,7 @@ public class UserRequestLogAop {
|
||||||
userRequestLog.setExecuteTime(executeTime);
|
userRequestLog.setExecuteTime(executeTime);
|
||||||
|
|
||||||
// 判断传入参数能否被序列化
|
// 判断传入参数能否被序列化
|
||||||
Object saveArgs = isSerializable(args) ? JSON.toJSONString(args) : "";
|
Object saveArgs = isSerializable(args) ? JSON.toJSONString(args) : new Object();
|
||||||
userRequestLog.setArg(JSON.toJSONString(saveArgs));
|
userRequestLog.setArg(JSON.toJSONString(saveArgs));
|
||||||
|
|
||||||
// 当前请求request
|
// 当前请求request
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
|
|
||||||
_ _
|
_ _
|
||||||
| |__ _ _ _ __ _ __ _ _ (_) __ ___ ____ _
|
| |__ _ _ _ __ _ __ _ _ (_) __ ___ ____ _
|
||||||
| '_ \| | | | '_ \| '_ \| | | | | |/ _` \ \ / / _` |
|
| '_ \| | | | '_ \| '_ \| | | | | |/ _` \ \ / / _` |
|
||||||
| |_) | |_| | | | | | | | |_| | | | (_| |\ V | (_| |
|
| |_) | |_| | | | | | | | |_| | | | (_| |\ V | (_| |
|
||||||
|_.__/ \__,_|_| |_|_| |_|\__, | _/ |\__,_| \_/ \__,_|
|
|_.__/ \__,_|_| |_|_| |_|\__, | _/ |\__,_| \_/ \__,_|
|
||||||
|___/ |__/
|
|___/ |__/
|
||||||
${AnsiColor.BRIGHT_GREEN}
|
|
||||||
SpringBoot Version: ${spring-boot.version}${spring-boot.formatted-version}
|
SpringBoot Version: ${spring-boot.version}${spring-boot.formatted-version}
|
||||||
${AnsiColor.BLACK}
|
|
Loading…
Reference in New Issue