LogAspect.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package com.ruoyi.framework.aspectj;
  2. import java.lang.reflect.Method;
  3. import java.util.Map;
  4. import org.aspectj.lang.JoinPoint;
  5. import org.aspectj.lang.Signature;
  6. import org.aspectj.lang.annotation.AfterReturning;
  7. import org.aspectj.lang.annotation.AfterThrowing;
  8. import org.aspectj.lang.annotation.Aspect;
  9. import org.aspectj.lang.annotation.Pointcut;
  10. import org.aspectj.lang.reflect.MethodSignature;
  11. import org.slf4j.Logger;
  12. import org.slf4j.LoggerFactory;
  13. import org.springframework.beans.factory.annotation.Autowired;
  14. import org.springframework.stereotype.Component;
  15. import com.alibaba.fastjson.JSONObject;
  16. import com.ruoyi.common.constant.UserConstants;
  17. import com.ruoyi.common.utils.ServletUtils;
  18. import com.ruoyi.common.utils.StringUtils;
  19. import com.ruoyi.common.utils.security.ShiroUtils;
  20. import com.ruoyi.framework.aspectj.lang.annotation.Log;
  21. import com.ruoyi.project.monitor.operlog.domain.OperLog;
  22. import com.ruoyi.project.monitor.operlog.service.IOperLogService;
  23. import com.ruoyi.project.system.user.domain.User;
  24. /**
  25. * 操作日志记录处理
  26. *
  27. * @author ruoyi
  28. */
  29. @Aspect
  30. @Component
  31. public class LogAspect
  32. {
  33. private static final Logger log = LoggerFactory.getLogger(LogAspect.class);
  34. @Autowired
  35. private IOperLogService operLogService;
  36. // 配置织入点
  37. @Pointcut("@annotation(com.ruoyi.framework.aspectj.lang.annotation.Log)")
  38. public void logPointCut()
  39. {
  40. }
  41. /**
  42. * 前置通知 用于拦截操作
  43. *
  44. * @param joinPoint 切点
  45. */
  46. @AfterReturning(pointcut = "logPointCut()")
  47. public void doBefore(JoinPoint joinPoint)
  48. {
  49. handleLog(joinPoint, null);
  50. }
  51. /**
  52. * 拦截异常操作
  53. *
  54. * @param joinPoint
  55. * @param e
  56. */
  57. @AfterThrowing(value = "logPointCut()", throwing = "e")
  58. public void doAfter(JoinPoint joinPoint, Exception e)
  59. {
  60. handleLog(joinPoint, e);
  61. }
  62. private void handleLog(JoinPoint joinPoint, Exception e)
  63. {
  64. try
  65. {
  66. // 获得注解
  67. Log controllerLog = getAnnotationLog(joinPoint);
  68. if (controllerLog == null)
  69. {
  70. return;
  71. }
  72. // 获取当前的用户
  73. User currentUser = ShiroUtils.getUser();
  74. // *========数据库日志=========*//
  75. OperLog operLog = new OperLog();
  76. operLog.setStatus(UserConstants.NORMAL);
  77. // 请求的地址
  78. String ip = ShiroUtils.getIp();
  79. operLog.setOperIp(ip);
  80. operLog.setOperUrl(ServletUtils.getHttpServletRequest().getRequestURI());
  81. if (currentUser != null)
  82. {
  83. operLog.setLoginName(currentUser.getLoginName());
  84. operLog.setDeptName(currentUser.getDept().getDeptName());
  85. }
  86. if (e != null)
  87. {
  88. operLog.setStatus(UserConstants.EXCEPTION);
  89. operLog.setErrorMsg(StringUtils.substring(e.getMessage(), 0, 2000));
  90. }
  91. // 设置方法名称
  92. String className = joinPoint.getTarget().getClass().getName();
  93. String methodName = joinPoint.getSignature().getName();
  94. operLog.setMethod(className + "." + methodName + "()");
  95. // 处理设置注解上的参数
  96. getControllerMethodDescription(controllerLog, operLog);
  97. // 保存数据库
  98. operLogService.insertOperlog(operLog);
  99. }
  100. catch (Exception exp)
  101. {
  102. // 记录本地异常日志
  103. log.error("==前置通知异常==");
  104. log.error("异常信息:{}", exp.getMessage());
  105. exp.printStackTrace();
  106. }
  107. }
  108. /**
  109. * 获取注解中对方法的描述信息 用于Controller层注解
  110. *
  111. * @param joinPoint 切点
  112. * @return 方法描述
  113. * @throws Exception
  114. */
  115. public static void getControllerMethodDescription(Log log, OperLog operLog) throws Exception
  116. {
  117. // 设置action动作
  118. operLog.setAction(log.action());
  119. // 设置标题
  120. operLog.setTitle(log.title());
  121. // 设置channel
  122. operLog.setChannel(log.channel());
  123. // 是否需要保存request,参数和值
  124. if (log.isSaveRequestData())
  125. {
  126. // 获取参数的信息,传入到数据库中。
  127. setRequestValue(operLog);
  128. }
  129. }
  130. /**
  131. * 获取请求的参数,放到log中
  132. *
  133. * @param operLog
  134. * @param request
  135. */
  136. private static void setRequestValue(OperLog operLog)
  137. {
  138. Map<String, String[]> map = ServletUtils.getHttpServletRequest().getParameterMap();
  139. String params = JSONObject.toJSONString(map);
  140. operLog.setOperParam(StringUtils.substring(params, 0, 255));
  141. }
  142. /**
  143. * 是否存在注解,如果存在就获取
  144. */
  145. private static Log getAnnotationLog(JoinPoint joinPoint) throws Exception
  146. {
  147. Signature signature = joinPoint.getSignature();
  148. MethodSignature methodSignature = (MethodSignature) signature;
  149. Method method = methodSignature.getMethod();
  150. if (method != null)
  151. {
  152. return method.getAnnotation(Log.class);
  153. }
  154. return null;
  155. }
  156. }