|
|
@ -1,5 +1,7 @@
|
|
|
|
package com.ruoyi.framework.aspectj;
|
|
|
|
package com.ruoyi.framework.aspectj;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.lang.Dict;
|
|
|
|
|
|
|
|
import cn.hutool.core.map.MapUtil;
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
|
import com.ruoyi.common.core.domain.dto.OperLogDTO;
|
|
|
|
import com.ruoyi.common.core.domain.dto.OperLogDTO;
|
|
|
@ -147,7 +149,13 @@ public class LogAspect {
|
|
|
|
for (Object o : paramsArray) {
|
|
|
|
for (Object o : paramsArray) {
|
|
|
|
if (ObjectUtil.isNotNull(o) && !isFilterObject(o)) {
|
|
|
|
if (ObjectUtil.isNotNull(o) && !isFilterObject(o)) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
params.append(JsonUtils.toJsonString(o)).append(" ");
|
|
|
|
String str = JsonUtils.toJsonString(o);
|
|
|
|
|
|
|
|
Dict dict = JsonUtils.parseMap(str);
|
|
|
|
|
|
|
|
if (MapUtil.isNotEmpty(dict)) {
|
|
|
|
|
|
|
|
MapUtil.removeAny(dict, EXCLUDE_PROPERTIES);
|
|
|
|
|
|
|
|
str = JsonUtils.toJsonString(dict);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
params.append(str).append(" ");
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|