在之前我们记录一些后台操作日志都是通过 logService.insert(log) 的方式,每次都要获取一堆信息,代码比较冗余和侵入性太强。我们想能不能通过一个东西抽取公共的代码,通过注解设置简单的日志描述即可自动完成一系列信息获取和日志的持久化操作。下面将介绍基于Spring 面向切面的思想和自定义注解来解决。
最终我们只需要如下图一个注解就能实现日志的记录
数据库
下面是具体实现
完整代码地址:https://github.com/saysky/sensboot
1.注解类 SystemLog
2.枚举类 LogType
3.切面类 SystemLogAspect
注释已经很完善了,这里就不多说了,里面有一些工具类和 Log 相关的类后面会补充
至此,仅仅三个类即可实现我们之前的功能
2.日志DAO层,采用MyBatis-Plus
3.Service实现
关于用户的service实现这里就不贴了,我觉得没有必要哈,完整代码文末会贴 GitHub地址
阿里巴巴代码规范中说明了,不建议使用 Executors.newFixedThreadPool(num); 这种形式创建线程,最好自己手动设置线程核心数和最大数以及队列大小,我们这里可以抽出个线程池静态工具类。
即该线程池随类加载时创建,维护5个线程,这5个线程永远存活,如果同时任务数大于5个,多余的将放在队列中,如果队列数超过队列最大大小2000,将开始创建额外的线程,直到线程数超过最大线程数10,调用 CallerRunsPolicy 拒绝策略。
使用方法如上切面类中
完整代码地址:https://github.com/saysky/sensboot
欢迎讨论,该项目主要用于基本框架和工具整合实例
最终我们只需要如下图一个注解就能实现日志的记录
数据库
下面是具体实现
完整代码地址:https://github.com/saysky/sensboot
一、注解和面向切面的基本实现
1.注解类 SystemLog
- package com.liuyanzhao.sens.annotation;
- import com.liuyanzhao.sens.enums.LogType;
- import java.lang.annotation.*;
- /**
- * 系统日志自定义注解
- *
- * @author liuyanzhao
- */
- @Target({ElementType.PARAMETER, ElementType.METHOD})//作用于参数或方法上
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface SystemLog {
- /**
- * 日志名称
- *
- * @return
- */
- String description() default "";
- /**
- * 日志类型
- *
- * @return
- */
- LogType type() default LogType.OPERATION;
- }
2.枚举类 LogType
- package com.liuyanzhao.sens.enums;
- /**
- * @author liuyanzhao
- */
- public enum LogType {
- /**
- * 默认0操作
- */
- OPERATION,
- /**
- * 1登录
- */
- LOGIN
- }
3.切面类 SystemLogAspect
- package com.liuyanzhao.sens.aop;
- import com.liuyanzhao.sens.annotation.SystemLog;
- import com.liuyanzhao.sens.entity.Log;
- import com.liuyanzhao.sens.entity.User;
- import com.liuyanzhao.sens.enums.LogType;
- import com.liuyanzhao.sens.service.LogService;
- import com.liuyanzhao.sens.service.UserService;
- import com.liuyanzhao.sens.utils.IpInfoUtil;
- import com.liuyanzhao.sens.utils.ObjectUtil;
- import com.liuyanzhao.sens.utils.ThreadPoolUtil;
- import lombok.extern.slf4j.Slf4j;
- import org.aspectj.lang.JoinPoint;
- import org.aspectj.lang.annotation.AfterReturning;
- import org.aspectj.lang.annotation.Aspect;
- import org.aspectj.lang.annotation.Before;
- import org.aspectj.lang.annotation.Pointcut;
- import org.checkerframework.checker.units.qual.A;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.core.NamedThreadLocal;
- import org.springframework.stereotype.Component;
- import javax.servlet.http.HttpServletRequest;
- import java.lang.reflect.Method;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.Map;
- import java.util.Objects;
- /**
- * Spring AOP实现日志管理
- *
- * @author liuyanzhao
- */
- @Aspect
- @Component
- @Slf4j
- public class SystemLogAspect {
- private static final ThreadLocal<Date> beginTimeThreadLocal = new NamedThreadLocal<Date>("ThreadLocal beginTime");
- @Autowired
- private LogService logService;
- @Autowired
- private UserService userService;
- @Autowired
- private IpInfoUtil ipInfoUtil;
- @Autowired(required = false)
- private HttpServletRequest request;
- /**
- * Controller层切点,注解方式
- */
- //@Pointcut("execution(* *..controller..*Controller*.*(..))")
- @Pointcut("@annotation(com.liuyanzhao.sens.annotation.SystemLog)")
- public void controllerAspect() {
- }
- /**
- * 前置通知 (在方法执行之前返回)用于拦截Controller层记录用户的操作的开始时间
- *
- * @param joinPoint 切点
- * @throws InterruptedException
- */
- @Before("controllerAspect()")
- public void doBefore(JoinPoint joinPoint) throws InterruptedException {
- //线程绑定变量(该数据只有当前请求的线程可见)
- Date beginTime = new Date();
- beginTimeThreadLocal.set(beginTime);
- }
- /**
- * 后置通知(在方法执行之后并返回数据) 用于拦截Controller层无异常的操作
- *
- * @param joinPoint 切点
- */
- @AfterReturning("controllerAspect()")
- public void after(JoinPoint joinPoint) {
- try {
- String username = "";
- String description = getControllerMethodInfo(joinPoint).get("description").toString();
- Map<String, String[]> requestParams = request.getParameterMap();
- Log log = new Log();
- //请求用户
- //后台操作(非登录)
- if (Objects.equals(getControllerMethodInfo(joinPoint).get("type"), 0)) {
- //后台操作请求(已登录)
- User user = userService.getLoginUser(request);
- if (user != null) {
- username = user.getUsername();
- }
- log.setUsername(username);
- }
- //日志标题
- log.setName(description);
- //日志类型
- log.setLogType((int) getControllerMethodInfo(joinPoint).get("type"));
- //日志请求url
- log.setRequestUrl(request.getRequestURI());
- //请求方式
- log.setRequestType(request.getMethod());
- //请求参数
- log.setRequestParam(ObjectUtil.mapToString(requestParams));
- //其他属性
- log.setIp(ipInfoUtil.getIpAddr(request));
- log.setCreateBy("system");
- log.setUpdateBy("system");
- log.setCreateTime(new Date());
- log.setUpdateTime(new Date());
- log.setDelFlag(0);
- //.......
- //请求开始时间
- long beginTime = beginTimeThreadLocal.get().getTime();
- long endTime = System.currentTimeMillis();
- //请求耗时
- Long logElapsedTime = endTime - beginTime;
- log.setCostTime(logElapsedTime.intValue());
- //持久化(存储到数据或者ES,可以考虑用线程池)
- //logService.insert(log);
- ThreadPoolUtil.getPool().execute(new SaveSystemLogThread(log, logService));
- } catch (Exception e) {
- log.error("AOP后置通知异常", e);
- }
- }
- /**
- * 保存日志至数据库
- */
- private static class SaveSystemLogThread implements Runnable {
- private Log log;
- private LogService logService;
- public SaveSystemLogThread(Log esLog, LogService logService) {
- this.log = esLog;
- this.logService = logService;
- }
- @Override
- public void run() {
- logService.insert(log);
- }
- }
- /**
- * 获取注解中对方法的描述信息 用于Controller层注解
- *
- * @param joinPoint 切点
- * @return 方法描述
- * @throws Exception
- */
- public static Map<String, Object> getControllerMethodInfo(JoinPoint joinPoint) throws Exception {
- Map<String, Object> map = new HashMap<String, Object>(16);
- //获取目标类名
- String targetName = joinPoint.getTarget().getClass().getName();
- //获取方法名
- String methodName = joinPoint.getSignature().getName();
- //获取相关参数
- Object[] arguments = joinPoint.getArgs();
- //生成类对象
- Class targetClass = Class.forName(targetName);
- //获取该类中的方法
- Method[] methods = targetClass.getMethods();
- String description = "";
- Integer type = null;
- for (Method method : methods) {
- if (!method.getName().equals(methodName)) {
- continue;
- }
- Class[] clazzs = method.getParameterTypes();
- if (clazzs.length != arguments.length) {
- //比较方法中参数个数与从切点中获取的参数个数是否相同,原因是方法可以重载哦
- continue;
- }
- description = method.getAnnotation(SystemLog.class).description();
- type = method.getAnnotation(SystemLog.class).type().ordinal();
- map.put("description", description);
- map.put("type", type);
- }
- return map;
- }
- }
注释已经很完善了,这里就不多说了,里面有一些工具类和 Log 相关的类后面会补充
至此,仅仅三个类即可实现我们之前的功能
二、日志的实体、DAO和Service层代码
- package com.liuyanzhao.sens.entity;
- import com.baomidou.mybatisplus.annotations.TableField;
- import com.baomidou.mybatisplus.annotations.TableId;
- import com.baomidou.mybatisplus.annotations.TableLogic;
- import com.baomidou.mybatisplus.annotations.TableName;
- import com.baomidou.mybatisplus.enums.IdType;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @author liuyanzhao
- */
- @Data
- @TableName("log")
- public class Log implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * ID,自增
- */
- @TableId(type = IdType.AUTO)
- private Long id;
- /**
- * 方法操作名称
- */
- private String name;
- /**
- * 日志类型 0登陆日志 1操作日志
- */
- private Integer logType;
- /**
- * 请求路径
- */
- private String requestUrl;
- /**
- * 请求类型
- */
- private String requestType;
- /**
- * 请求参数
- */
- private String requestParam;
- /**
- * 请求用户
- */
- private String username;
- /**
- * ip
- */
- private String ip;
- /**
- * ip信息
- */
- private String ipInfo;
- /**
- * 花费时间
- */
- private Integer costTime;
- /**
- * 删除状态:1删除,0未删除
- */
- @TableField(value = "del_flag")
- @TableLogic
- private Integer delFlag = 0;
- /**
- * 创建人用户名
- */
- private String createBy;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新人
- */
- private String updateBy;
- /**
- * 更新时间
- */
- private Date updateTime;
- }
2.日志DAO层,采用MyBatis-Plus
- package com.liuyanzhao.sens.mapper;
- import com.baomidou.mybatisplus.mapper.BaseMapper;
- import com.liuyanzhao.sens.entity.Log;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @author 言曌
- * @date 2019-08-09 15:15
- */
- @Mapper
- public interface LogMapper extends BaseMapper<Log> {
- }
3.Service实现
- package com.liuyanzhao.sens.service.impl;
- import com.liuyanzhao.sens.entity.Log;
- import com.liuyanzhao.sens.mapper.LogMapper;
- import com.liuyanzhao.sens.service.LogService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- /**
- * @author 言曌
- * @date 2019-08-19 21:51
- */
- @Service
- public class LogServiceImpl implements LogService {
- @Autowired
- private LogMapper logMapper;
- @Override
- public Integer insert(Log log) {
- return logMapper.insert(log);
- }
- }
关于用户的service实现这里就不贴了,我觉得没有必要哈,完整代码文末会贴 GitHub地址
三、线程池的使用
阿里巴巴代码规范中说明了,不建议使用 Executors.newFixedThreadPool(num); 这种形式创建线程,最好自己手动设置线程核心数和最大数以及队列大小,我们这里可以抽出个线程池静态工具类。
- package com.liuyanzhao.sens.utils;
- import java.util.concurrent.ArrayBlockingQueue;
- import java.util.concurrent.BlockingQueue;
- import java.util.concurrent.ThreadPoolExecutor;
- import java.util.concurrent.TimeUnit;
- /**
- * @author liuyanzhao
- */
- public class ThreadPoolUtil {
- /**
- * 线程缓冲队列
- */
- private static BlockingQueue<Runnable> bqueue = new ArrayBlockingQueue<Runnable>(100);
- /**
- * 核心线程数,会一直存活,即使没有任务,线程池也会维护线程的最少数量
- */
- private static final int SIZE_CORE_POOL = 5;
- /**
- * 线程池维护线程的最大数量
- */
- private static final int SIZE_MAX_POOL = 10;
- /**
- * 线程池维护线程所允许的空闲时间
- */
- private static final long ALIVE_TIME = 2000;
- private static ThreadPoolExecutor pool = new ThreadPoolExecutor(SIZE_CORE_POOL, SIZE_MAX_POOL, ALIVE_TIME, TimeUnit.MILLISECONDS, bqueue, new ThreadPoolExecutor.CallerRunsPolicy());
- static {
- pool.prestartAllCoreThreads();
- }
- public static ThreadPoolExecutor getPool() {
- return pool;
- }
- public static void main(String[] args) {
- System.out.println(pool.getPoolSize());
- }
- }
即该线程池随类加载时创建,维护5个线程,这5个线程永远存活,如果同时任务数大于5个,多余的将放在队列中,如果队列数超过队列最大大小2000,将开始创建额外的线程,直到线程数超过最大线程数10,调用 CallerRunsPolicy 拒绝策略。
使用方法如上切面类中
- ThreadPoolUtil.getPool().execute(new SaveSystemLogThread(log, logService));
四、完整代码地址
完整代码地址:https://github.com/saysky/sensboot
欢迎讨论,该项目主要用于基本框架和工具整合实例
2020年06月25日 03:00:24
最后一段,“队列数超过队列最大大小2000”应该是100吧
2019年09月11日 15:43:10
楼主用的是idea么?模板好漂亮,哪一款给个下载链接呗