使用SpringBoot AOP 記錄操作日志、異常日志的過(guò)程
平時(shí)我們?cè)谧鲰?xiàng)目時(shí)經(jīng)常需要對(duì)一些重要功能操作記錄日志,方便以后跟蹤是誰(shuí)在操作此功能;我們?cè)诓僮髂承┕δ軙r(shí)也有可能會(huì)發(fā)生異常,但是每次發(fā)生異常要定位原因我們都要到服務(wù)器去查詢?nèi)罩静拍苷业剑乙膊荒軐?duì)發(fā)生的異常進(jìn)行統(tǒng)計(jì),從而改進(jìn)我們的項(xiàng)目,要是能做個(gè)功能專門來(lái)記錄操作日志和異常日志那就好了, 當(dāng)然我們肯定有方法來(lái)做這件事情,而且也不會(huì)很難,我們可以在需要的方法中增加記錄日志的代碼,和在每個(gè)方法中增加記錄異常的代碼,最終把記錄的日志存到數(shù)據(jù)庫(kù)中。聽(tīng)起來(lái)好像很容易,但是我們做起來(lái)會(huì)發(fā)現(xiàn),做這項(xiàng)工作很繁瑣,而且都是在做一些重復(fù)性工作,還增加大量冗余代碼,這種方式記錄日志肯定是不可行的。
我們以前學(xué)過(guò)Spring 三大特性,IOC(控制反轉(zhuǎn)),DI(依賴注入),AOP(面向切面),那其中AOP的主要功能就是將日志記錄,性能統(tǒng)計(jì),安全控制,事務(wù)處理,異常處理等代碼從業(yè)務(wù)邏輯代碼中劃分出來(lái)。今天我們就來(lái)用springBoot Aop 來(lái)做日志記錄,好了,廢話說(shuō)了一大堆還是上貨吧。
一、創(chuàng)建日志記錄表、異常日志表,表結(jié)構(gòu)如下:

操作日志表

異常日志表
二、添加Maven依賴
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
三、創(chuàng)建操作日志注解類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) //注解放置的目標(biāo)位置,METHOD是可注解在方法級(jí)別上
@Retention(RetentionPolicy.RUNTIME) //注解在哪個(gè)階段執(zhí)行
@Documented
public @interface OperLog {
String operModul() default ""; // 操作模塊
String operType() default ""; // 操作類型
String operDesc() default ""; // 操作說(shuō)明
}
四、創(chuàng)建切面類記錄操作日志
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 {
/**
* 操作版本號(hào)
* <p>
* 項(xiàng)目啟動(dòng)時(shí)從命令行傳入,例如:java -jar xxx.war --version=201902
* </p>
*/
@Value("${version}")
private String operVer;
@Autowired
private OperationLogService operationLogService;
@Autowired
private ExceptionLogService exceptionLogService;
/**
* 設(shè)置操作日志切入點(diǎn) 記錄操作日志 在注解的位置切入代碼
*/
@Pointcut("@annotation(com.hyd.zcar.cms.common.utils.annotation.OperLog)")
public void operLogPoinCut() {
}
/**
* 設(shè)置操作異常切入點(diǎn)記錄異常日志 掃描所有controller包下操作
*/
@Pointcut("execution(* com.hyd.zcar.cms.controller..*.*(..))")
public void operExceptionLogPoinCut() {
}
/**
* 正常返回通知,攔截用戶操作日志,連接點(diǎn)正常執(zhí)行完成后執(zhí)行, 如果連接點(diǎn)拋出異常,則不會(huì)執(zhí)行
*
* @param joinPoint 切入點(diǎn)
* @param keys 返回結(jié)果
*/
@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
// 從切面織入點(diǎn)處通過(guò)反射機(jī)制獲取織入點(diǎn)處的方法
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
// 獲取切入點(diǎn)所在的方法
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); // 操作描述
}
// 獲取請(qǐng)求的類名
String className = joinPoint.getTarget().getClass().getName();
// 獲取請(qǐng)求的方法名
String methodName = method.getName();
methodName = className + "." + methodName;
operlog.setOperMethod(methodName); // 請(qǐng)求方法
// 請(qǐng)求的參數(shù)
Map<String, String> rtnMap = converMap(request.getParameterMap());
// 將參數(shù)所在的數(shù)組轉(zhuǎn)換成json
String params = JSON.toJSONString(rtnMap);
operlog.setOperRequParam(params); // 請(qǐng)求參數(shù)
operlog.setOperRespParam(JSON.toJSONString(keys)); // 返回結(jié)果
operlog.setOperUserId(UserShiroUtil.getCurrentUserLoginName()); // 請(qǐng)求用戶ID
operlog.setOperUserName(UserShiroUtil.getCurrentUserName()); // 請(qǐng)求用戶名稱
operlog.setOperIp(IPUtil.getRemortIP(request)); // 請(qǐng)求IP
operlog.setOperUri(request.getRequestURI()); // 請(qǐng)求URI
operlog.setOperCreateTime(new Date()); // 創(chuàng)建時(shí)間
operlog.setOperVer(operVer); // 操作版本
operationLogService.insert(operlog);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 異常返回通知,用于攔截異常日志信息 連接點(diǎn)拋出異常后執(zhí)行
*
* @param joinPoint 切入點(diǎn)
* @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 {
// 從切面織入點(diǎn)處通過(guò)反射機(jī)制獲取織入點(diǎn)處的方法
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
// 獲取切入點(diǎn)所在的方法
Method method = signature.getMethod();
excepLog.setExcId(UuidUtil.get32UUID());
// 獲取請(qǐng)求的類名
String className = joinPoint.getTarget().getClass().getName();
// 獲取請(qǐng)求的方法名
String methodName = method.getName();
methodName = className + "." + methodName;
// 請(qǐng)求的參數(shù)
Map<String, String> rtnMap = converMap(request.getParameterMap());
// 將參數(shù)所在的數(shù)組轉(zhuǎn)換成json
String params = JSON.toJSONString(rtnMap);
excepLog.setExcRequParam(params); // 請(qǐng)求參數(shù)
excepLog.setOperMethod(methodName); // 請(qǐng)求方法名
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); // 操作版本號(hào)
excepLog.setOperCreateTime(new Date()); // 發(fā)生異常時(shí)間
exceptionLogService.insert(excepLog);
} catch (Exception e2) {
e2.printStackTrace();
}
}
/**
* 轉(zhuǎn)換request 請(qǐng)求參數(shù)
*
* @param paramMap request獲取的參數(shù)數(shù)組
*/
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;
}
/**
* 轉(zhuǎn)換異常信息為字符串
*
* @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注解

六、操作日志、異常日志查詢功能





到此這篇關(guān)于使用SpringBoot AOP 記錄操作日志、異常日志的過(guò)程的文章就介紹到這了,更多相關(guān)SpringBoot AOP 操作日志、異常日志內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
java中利用反射調(diào)用另一類的private方法的簡(jiǎn)單實(shí)例
下面小編就為大家?guī)?lái)一篇java中利用反射調(diào)用另一類的private方法的簡(jiǎn)單實(shí)例。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-06-06
基于Spring Security的動(dòng)態(tài)權(quán)限系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)
本文介紹一個(gè)基于Spring Boot 2.7.18和SpringSecurity實(shí)現(xiàn)的權(quán)限系統(tǒng),支持接口級(jí)權(quán)限控制,支持權(quán)限,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2025-07-07
Spring?Boot?攔截器幫助解鎖5種常用場(chǎng)景(推薦)
在SpringBoot中,攔截器用于在請(qǐng)求處理前后插入自定義邏輯,實(shí)現(xiàn)權(quán)限校驗(yàn)、日志記錄、性能監(jiān)控等功能,本文給大家介紹Spring?Boot?攔截器幫助解鎖5大實(shí)用場(chǎng)景,感興趣的朋友跟隨小編一起看看吧2026-01-01
JAVA如何把數(shù)據(jù)庫(kù)的數(shù)據(jù)處理成樹(shù)形結(jié)構(gòu)
本文介紹了JAVA如何把數(shù)據(jù)庫(kù)的數(shù)據(jù)處理成樹(shù)形結(jié)構(gòu),文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-09-09
Java如何實(shí)現(xiàn)上傳文件到服務(wù)器指定目錄
這篇文章主要介紹了Java如何實(shí)現(xiàn)上傳文件到服務(wù)器指定目錄,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-04-04
Java數(shù)據(jù)結(jié)構(gòu)之棧的基本定義與實(shí)現(xiàn)方法示例
這篇文章主要介紹了Java數(shù)據(jù)結(jié)構(gòu)之棧的基本定義與實(shí)現(xiàn)方法,簡(jiǎn)單描述了數(shù)據(jù)結(jié)構(gòu)中棧的功能、原理,并結(jié)合java實(shí)例形式分析了棧的基本定義與使用方法,需要的朋友可以參考下2017-10-10
Java?JVM虛擬機(jī)調(diào)優(yōu)詳解
JVM是JavaVirtualMachine(Java虛擬機(jī))的縮寫(xiě),JVM是一種用于計(jì)算設(shè)備的規(guī)范,它是一個(gè)虛構(gòu)出來(lái)的計(jì)算機(jī),是通過(guò)在實(shí)際的計(jì)算機(jī)上仿真模擬各種計(jì)算機(jī)功能來(lái)實(shí)現(xiàn)的,本文主要介紹了jvm調(diào)優(yōu),感興趣的小伙伴們可以參考一下<BR>2022-07-07
java實(shí)現(xiàn)的xml格式化實(shí)現(xiàn)代碼
這篇文章主要介紹了java實(shí)現(xiàn)的xml格式化實(shí)現(xiàn)代碼,需要的朋友可以參考下2016-11-11
JDBC實(shí)現(xiàn)Mysql自動(dòng)重連機(jī)制的方法詳解
最近在工作中發(fā)現(xiàn)了一個(gè)問(wèn)題,通過(guò)查找相關(guān)的資料終于解決了,下面這篇文章主要給大家介紹了關(guān)于JDBC實(shí)現(xiàn)Mysql自動(dòng)重連機(jī)制的相關(guān)資料,文中給出多種解決的方法,需要的朋友可以參考借鑒,下面來(lái)一起看看吧。2017-07-07
java實(shí)現(xiàn)溫度單位轉(zhuǎn)換(攝氏度和華氏度)
在軟件開(kāi)發(fā)中,溫度轉(zhuǎn)換是測(cè)量與控制系統(tǒng),氣象應(yīng)用,物聯(lián)網(wǎng)終端,科學(xué)計(jì)算等場(chǎng)景的基礎(chǔ)功能之一,所以本文將使用java實(shí)現(xiàn)溫度單位轉(zhuǎn)換功能,需要的可以了解下2025-07-07

