mirror of https://gitee.com/y_project/RuoYi.git
操作日志返回参数添加非空验证
parent
b773a09938
commit
9d3f806e0d
|
@ -89,7 +89,10 @@ public class LogAspect
|
|||
String ip = ShiroUtils.getIp();
|
||||
operLog.setOperIp(ip);
|
||||
// 返回参数
|
||||
operLog.setJsonResult(StringUtils.substring(JSON.marshal(jsonResult), 0, 2000));
|
||||
if (StringUtils.isNotNull(jsonResult))
|
||||
{
|
||||
operLog.setJsonResult(StringUtils.substring(JSON.marshal(jsonResult), 0, 2000));
|
||||
}
|
||||
|
||||
operLog.setOperUrl(ServletUtils.getRequest().getRequestURI());
|
||||
if (currentUser != null)
|
||||
|
|
Loading…
Reference in New Issue