fix: 修复部分缺陷

This commit is contained in:
Bunny 2024-12-29 21:30:52 +08:00
parent f72e30efb5
commit 9e0769a7c9
2 changed files with 1 additions and 4 deletions

View File

@ -67,7 +67,7 @@ public class UserRequestLogAop {
userRequestLog.setExecuteTime(executeTime);
// 判断传入参数能否被序列化
Object saveArgs = isSerializable(args) ? JSON.toJSONString(args) : "";
Object saveArgs = isSerializable(args) ? JSON.toJSONString(args) : new Object();
userRequestLog.setArg(JSON.toJSONString(saveArgs));
// 当前请求request

View File

@ -1,10 +1,7 @@
_ _
| |__ _ _ _ __ _ __ _ _ (_) __ ___ ____ _
| '_ \| | | | '_ \| '_ \| | | | | |/ _` \ \ / / _` |
| |_) | |_| | | | | | | | |_| | | | (_| |\ V | (_| |
|_.__/ \__,_|_| |_|_| |_|\__, | _/ |\__,_| \_/ \__,_|
|___/ |__/
${AnsiColor.BRIGHT_GREEN}
SpringBoot Version: ${spring-boot.version}${spring-boot.formatted-version}
${AnsiColor.BLACK}