这种方式确实可行,(我真这样干过)但是作为优秀的程序员,追求的是优雅的代码
今天在这里记录一下如何使用自定义注解实现日志的操作。
1.在你的代码中加入一个类
/**
* @description: 自定义log注解
* @author: Daigl
* @create: 2021-02-01 21:33
**/
@Target({ ElementType.PARAMETER, ElementType.METHOD }) //可以作用在类上,也可以作用在方法上
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Log {
/**
* 模块
*/
public String title() default "";
/**
* 功能
*/
public BusinessType businessType() default BusinessType.OTHER;
/**
* 操作人类别
*/
public OperatorType operatorType() default OperatorType.MANAGE;
/**
* 是否保存请求的参数
*/
public boolean isSaveRequestData() default true;
}
枚举类 BusinessType (功能.例如是新增还是修改)
public enum BusinessType {
/**
* 其它
*/
OTHER,
/**
* 新增
*/
INSERT,
/**
* 修改
*/
UPDATE,
/**
* 删除
*/
DELETE,
/**
* 授权
*/
GRANT,
/**
* 导出
*/
EXPORT,
/**
* 导入
*/
IMPORT,
/**
* 强退
*/
FORCE,
/**
* 生成代码
*/
GENCODE,
/**
* 清空数据
*/
CLEAN,
}
枚举类 OperatorType(操作人类别)
public enum OperatorType {
/**
* 其它
*/
OTHER,
/**
* 后台用户
*/
MANAGE,
/**
* 手机端用户
*/
MOBILE
}
2.新建OperLogAspect类(重要)
说明:下面这个类,可以完全复制。
a.注意logPointCut :切入点 。
b. handleLog:操作数据库。我这里记录的较详细。可根据您的需求进行增删。
package com.aiit.aspectj;
import cn.hutool.core.date.DateUtil;
import com.aiit.aspectj.annotaion.Log;
import com.aiit.aspectj.enums.BusinessStatus;
import com.aiit.domain.OperLog;
import com.aiit.domain.User;
import com.aiit.service.OperLogService;
import com.aiit.util.ServletUtils;
import com.aiit.util.ShiroSecurityUtils;
import com.aiit.utils.AddressUtils;
import com.aiit.utils.IpUtils;
import com.alibaba.fastjson.JSON;
import lombok.extern.log4j.Log4j2;
import org.apache.commons.lang3.StringUtils;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.Signature;
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.http.HttpMethod;
import org.springframework.stereotype.Component;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.HandlerMapping;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.lang.reflect.Method;
import java.util.Map;
/**
* @program: open-his
* @description: 操作日志记录处理
* @author: Daigl
* @create: 2021-02-04 21:42
**/
@Component
@Aspect
@Log4j2
public class OperLogAspect {
@Autowired
private OperLogService operLogService;
/**
* 声明切面
* 只要Controller的方法中有@log注解就切入 重要
*/
@Pointcut("@annotation(com.aiit.aspectj.annotaion.Log)")
public void logPointCut(){}
/**
* 处理完请求后执行
*
* @param joinPoint 切点
*/
@AfterReturning(pointcut = "logPointCut()", returning = "jsonResult")
public void doAfterReturning(JoinPoint joinPoint, Object jsonResult)
{
handleLog(joinPoint, null, jsonResult);
}
/**
* 拦截异常操作
*
* @param joinPoint 切点
* @param e 异常
*/
@AfterThrowing(value = "logPointCut()", throwing = "e")
public void doAfterThrowing(JoinPoint joinPoint, Exception e)
{
handleLog(joinPoint, e, null);
}
protected void handleLog(final JoinPoint joinPoint, final Exception e, Object jsonResult)
{
try
{
// 获得注解
Log controllerLog = getAnnotationLog(joinPoint);
if (controllerLog == null)
{
return;
}
// 获取当前的用户
User loginUser = ShiroSecurityUtils.getCurrentUser();
// *========数据库日志=========*//
OperLog operLog = new OperLog();
operLog.setStatus(String.valueOf(BusinessStatus.SUCCESS.ordinal()));
// 请求的地址
String ip = IpUtils.getIpAddr(ServletUtils.getRequest());
operLog.setOperIp(ip);
String address = AddressUtils.getRealAddressByIP(ip);
operLog.setOperLocation(address);
// 返回参数
operLog.setJsonResult(JSON.toJSONString(jsonResult));
operLog.setOperUrl(ServletUtils.getRequest().getRequestURI());
if (loginUser != null)
{
operLog.setOperName(loginUser.getUserName());
}
if (e != null)
{
operLog.setStatus(String.valueOf(BusinessStatus.FAIL.ordinal()));
operLog.setErrorMsg(StringUtils.substring(e.getMessage(), 0, 2000));
}
// 设置方法名称
String className = joinPoint.getTarget().getClass().getName();
String methodName = joinPoint.getSignature().getName();
operLog.setMethod(className + "." + methodName + "()");
// 设置请求方式
operLog.setRequestMethod(ServletUtils.getRequest().getMethod());
// 处理设置注解上的参数
getControllerMethodDescription(joinPoint, controllerLog, operLog);
//设置操作时间
operLog.setOperTime(DateUtil.date());
// 保存数据库 *******************************************重要。
//保存您的日志数据到数据库
operLogService.insertOperLog(operLog);
}
catch (Exception exp)
{
// 记录本地异常日志
log.error("==前置通知异常==");
log.error("异常信息:{}", exp.getMessage());
exp.printStackTrace();
}
}
/**
* 是否存在注解,如果存在就获取
*/
private Log getAnnotationLog(JoinPoint joinPoint) throws Exception
{
Signature signature = joinPoint.getSignature();
MethodSignature methodSignature = (MethodSignature) signature;
Method method = methodSignature.getMethod();
if (method != null)
{
return method.getAnnotation(Log.class);
}
return null;
}
/**
* 获取注解中对方法的描述信息 用于Controller层注解
*
* @param log 日志
* @param operLog 操作日志
* @throws Exception
*/
public void getControllerMethodDescription(JoinPoint joinPoint, Log log, OperLog operLog) throws Exception
{
// 设置action动作
operLog.setBusinessType(String.valueOf(log.businessType().ordinal()));
// 设置标题
operLog.setTitle(log.title());
// 设置操作人类别
operLog.setOperatorType(log.operatorType().ordinal());
// 是否需要保存request,参数和值
if (log.isSaveRequestData())
{
// 获取参数的信息,传入到数据库中。
setRequestValue(joinPoint, operLog);
}
}
/**
* 获取请求的参数,放到log中
*
* @param operLog 操作日志
* @throws Exception 异常
*/
private void setRequestValue(JoinPoint joinPoint, OperLog operLog) throws Exception
{
String requestMethod = operLog.getRequestMethod();
if (HttpMethod.PUT.name().equals(requestMethod) || HttpMethod.POST.name().equals(requestMethod))
{
String params = argsArrayToString(joinPoint.getArgs());
operLog.setOperParam(StringUtils.substring(params, 0, 2000));
}
else
{
Map<?, ?> paramsMap = (Map<?, ?>) ServletUtils.getRequest().getAttribute(HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE);
operLog.setOperParam(StringUtils.substring(paramsMap.toString(), 0, 2000));
}
}
/**
* 参数拼装
*/
private String argsArrayToString(Object[] paramsArray)
{
String params = "";
if (paramsArray != null && paramsArray.length > 0)
{
for (int i = 0; i < paramsArray.length; i++)
{
if (!isFilterObject(paramsArray[i]))
{
Object jsonObj = JSON.toJSON(paramsArray[i]);
params += jsonObj.toString() + " ";
}
}
}
return params.trim();
}
/**
* 判断是否需要过滤的对象。
*
* @param o 对象信息。
* @return 如果是需要过滤的对象,则返回true;否则返回false。
*/
public boolean isFilterObject(final Object o)
{
return o instanceof MultipartFile || o instanceof HttpServletRequest
|| o instanceof HttpServletResponse;
}
}
3.写好上面的代码,您就可以在需要记录操作日志的方法上加上@Log注解,这样就可以对增加log日志啦!
/**
* 修改
*/
@PutMapping("updateDictType")
@Log(title = "修改字典类型",businessType = BusinessType.UPDATE)
public AjaxResult updateDictType(@Validated DictTypeDto dictTypeDto) {
if (dictTypeService.checkDictTypeUnique(dictTypeDto.getDictId(), dictTypeDto.getDictType())) {
return AjaxResult.fail("修改字典【" + dictTypeDto.getDictName() + "】失败,字典类型已存在");
}
dictTypeDto.setSimpleUser(ShiroSecurityUtils.getCurrentSimpleUser());
return AjaxResult.toAjax(this.dictTypeService.update(dictTypeDto));
}
上图我对一张表的修改操作进行了日志记录。只需要加上@Log即可
后面的参数title:可以随便写。一般是您本方法的作用
businessType:这个后面的参数是我们之前写的枚举类。直接调用。有修改,增加,删除
可以根您的需要可以对BusinessType类进行修改
ok,这样当用户调用到您的updateDictType方法时,就会在日志表中插入一条数据啦。