使用SpringBoot AOP 記錄操作日志、異常日志的過程
平時我們在做項目時經常需要對一些重要功能操作記錄日志,方便以後跟蹤是誰在操作此功能;我們在操作某些功能時也有可能會發生異常,但是每次發生異常要定位原因我們都要到服務器去查詢日志才能找到,而且也不能對發生的異常進行統計,從而改進我們的項目,要是能做個功能專門來記錄操作日志和異常日志那就好瞭, 當然我們肯定有方法來做這件事情,而且也不會很難,我們可以在需要的方法中增加記錄日志的代碼,和在每個方法中增加記錄異常的代碼,最終把記錄的日志存到數據庫中。聽起來好像很容易,但是我們做起來會發現,做這項工作很繁瑣,而且都是在做一些重復性工作,還增加大量冗餘代碼,這種方式記錄日志肯定是不可行的。
我們以前學過Spring 三大特性,IOC(控制反轉),DI(依賴註入),AOP(面向切面),那其中AOP的主要功能就是將日志記錄,性能統計,安全控制,事務處理,異常處理等代碼從業務邏輯代碼中劃分出來。今天我們就來用springBoot Aop 來做日志記錄,好瞭,廢話說瞭一大堆還是上貨吧。
一、創建日志記錄表、異常日志表,表結構如下:
操作日志表
異常日志表
二、添加Maven依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>
三、創建操作日志註解類OperLog.java
package com.hyd.zcar.cms.common.utils.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 自定義操作日志註解 * @author wu */ @Target(ElementType.METHOD) //註解放置的目標位置,METHOD是可註解在方法級別上 @Retention(RetentionPolicy.RUNTIME) //註解在哪個階段執行 @Documented public @interface OperLog { String operModul() default ""; // 操作模塊 String operType() default ""; // 操作類型 String operDesc() default ""; // 操作說明 }
四、創建切面類記錄操作日志
package com.hyd.zcar.cms.common.utils.aop; import java.lang.reflect.Method; import java.util.Date; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.AfterReturning; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Pointcut; import org.aspectj.lang.reflect.MethodSignature; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import org.springframework.web.context.request.RequestAttributes; import org.springframework.web.context.request.RequestContextHolder; import com.gexin.fastjson.JSON; import com.hyd.zcar.cms.common.utils.IPUtil; import com.hyd.zcar.cms.common.utils.annotation.OperLog; import com.hyd.zcar.cms.common.utils.base.UuidUtil; import com.hyd.zcar.cms.common.utils.security.UserShiroUtil; import com.hyd.zcar.cms.entity.system.log.ExceptionLog; import com.hyd.zcar.cms.entity.system.log.OperationLog; import com.hyd.zcar.cms.service.system.log.ExceptionLogService; import com.hyd.zcar.cms.service.system.log.OperationLogService; /** * 切面處理類,操作日志異常日志記錄處理 * * @author wu * @date 2019/03/21 */ @Aspect @Component public class OperLogAspect { /** * 操作版本號 * <p> * 項目啟動時從命令行傳入,例如:java -jar xxx.war --version=201902 * </p> */ @Value("${version}") private String operVer; @Autowired private OperationLogService operationLogService; @Autowired private ExceptionLogService exceptionLogService; /** * 設置操作日志切入點 記錄操作日志 在註解的位置切入代碼 */ @Pointcut("@annotation(com.hyd.zcar.cms.common.utils.annotation.OperLog)") public void operLogPoinCut() { } /** * 設置操作異常切入點記錄異常日志 掃描所有controller包下操作 */ @Pointcut("execution(* com.hyd.zcar.cms.controller..*.*(..))") public void operExceptionLogPoinCut() { } /** * 正常返回通知,攔截用戶操作日志,連接點正常執行完成後執行, 如果連接點拋出異常,則不會執行 * * @param joinPoint 切入點 * @param keys 返回結果 */ @AfterReturning(value = "operLogPoinCut()", returning = "keys") public void saveOperLog(JoinPoint joinPoint, Object keys) { // 獲取RequestAttributes RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); // 從獲取RequestAttributes中獲取HttpServletRequest的信息 HttpServletRequest request = (HttpServletRequest) requestAttributes .resolveReference(RequestAttributes.REFERENCE_REQUEST); OperationLog operlog = new OperationLog(); try { operlog.setOperId(UuidUtil.get32UUID()); // 主鍵ID // 從切面織入點處通過反射機制獲取織入點處的方法 MethodSignature signature = (MethodSignature) joinPoint.getSignature(); // 獲取切入點所在的方法 Method method = signature.getMethod(); // 獲取操作 OperLog opLog = method.getAnnotation(OperLog.class); if (opLog != null) { String operModul = opLog.operModul(); String operType = opLog.operType(); String operDesc = opLog.operDesc(); operlog.setOperModul(operModul); // 操作模塊 operlog.setOperType(operType); // 操作類型 operlog.setOperDesc(operDesc); // 操作描述 } // 獲取請求的類名 String className = joinPoint.getTarget().getClass().getName(); // 獲取請求的方法名 String methodName = method.getName(); methodName = className + "." + methodName; operlog.setOperMethod(methodName); // 請求方法 // 請求的參數 Map<String, String> rtnMap = converMap(request.getParameterMap()); // 將參數所在的數組轉換成json String params = JSON.toJSONString(rtnMap); operlog.setOperRequParam(params); // 請求參數 operlog.setOperRespParam(JSON.toJSONString(keys)); // 返回結果 operlog.setOperUserId(UserShiroUtil.getCurrentUserLoginName()); // 請求用戶ID operlog.setOperUserName(UserShiroUtil.getCurrentUserName()); // 請求用戶名稱 operlog.setOperIp(IPUtil.getRemortIP(request)); // 請求IP operlog.setOperUri(request.getRequestURI()); // 請求URI operlog.setOperCreateTime(new Date()); // 創建時間 operlog.setOperVer(operVer); // 操作版本 operationLogService.insert(operlog); } catch (Exception e) { e.printStackTrace(); } } /** * 異常返回通知,用於攔截異常日志信息 連接點拋出異常後執行 * * @param joinPoint 切入點 * @param e 異常信息 */ @AfterThrowing(pointcut = "operExceptionLogPoinCut()", throwing = "e") public void saveExceptionLog(JoinPoint joinPoint, Throwable e) { // 獲取RequestAttributes RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); // 從獲取RequestAttributes中獲取HttpServletRequest的信息 HttpServletRequest request = (HttpServletRequest) requestAttributes .resolveReference(RequestAttributes.REFERENCE_REQUEST); ExceptionLog excepLog = new ExceptionLog(); try { // 從切面織入點處通過反射機制獲取織入點處的方法 MethodSignature signature = (MethodSignature) joinPoint.getSignature(); // 獲取切入點所在的方法 Method method = signature.getMethod(); excepLog.setExcId(UuidUtil.get32UUID()); // 獲取請求的類名 String className = joinPoint.getTarget().getClass().getName(); // 獲取請求的方法名 String methodName = method.getName(); methodName = className + "." + methodName; // 請求的參數 Map<String, String> rtnMap = converMap(request.getParameterMap()); // 將參數所在的數組轉換成json String params = JSON.toJSONString(rtnMap); excepLog.setExcRequParam(params); // 請求參數 excepLog.setOperMethod(methodName); // 請求方法名 excepLog.setExcName(e.getClass().getName()); // 異常名稱 excepLog.setExcMessage(stackTraceToString(e.getClass().getName(), e.getMessage(), e.getStackTrace())); // 異常信息 excepLog.setOperUserId(UserShiroUtil.getCurrentUserLoginName()); // 操作員ID excepLog.setOperUserName(UserShiroUtil.getCurrentUserName()); // 操作員名稱 excepLog.setOperUri(request.getRequestURI()); // 操作URI excepLog.setOperIp(IPUtil.getRemortIP(request)); // 操作員IP excepLog.setOperVer(operVer); // 操作版本號 excepLog.setOperCreateTime(new Date()); // 發生異常時間 exceptionLogService.insert(excepLog); } catch (Exception e2) { e2.printStackTrace(); } } /** * 轉換request 請求參數 * * @param paramMap request獲取的參數數組 */ public Map<String, String> converMap(Map<String, String[]> paramMap) { Map<String, String> rtnMap = new HashMap<String, String>(); for (String key : paramMap.keySet()) { rtnMap.put(key, paramMap.get(key)[0]); } return rtnMap; } /** * 轉換異常信息為字符串 * * @param exceptionName 異常名稱 * @param exceptionMessage 異常信息 * @param elements 堆棧信息 */ public String stackTraceToString(String exceptionName, String exceptionMessage, StackTraceElement[] elements) { StringBuffer strbuff = new StringBuffer(); for (StackTraceElement stet : elements) { strbuff.append(stet + "\n"); } String message = exceptionName + ":" + exceptionMessage + "\n\t" + strbuff.toString(); return message; } }
五、在Controller層方法添加@OperLog註解
六、操作日志、異常日志查詢功能
到此這篇關於使用SpringBoot AOP 記錄操作日志、異常日志的過程的文章就介紹到這瞭,更多相關SpringBoot AOP 操作日志、異常日志內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- 在springboot中使用AOP進行全局日志記錄
- Spring AOP實現復雜的日志記錄操作(自定義註解)
- SpringAop日志找不到方法的處理
- SpringMVC記錄我遇到的坑_AOP註解無效,切面不執行的解決
- Springboot如何使用Aspectj實現AOP面向切面編程