zoukankan      html  css  js  c++  java
  • SpringBoot集成AOP操作日志

    SpringBoot集成AOP操作日志

    依赖

    <dependency>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-aop</artifactId>
    </dependency>
    

    编写自定义注解OperLog

    /**
     * 自定义操作日志注解
     */
    @Target(ElementType.METHOD) //注解放置的目标位置,METHOD是可注解在方法级别上
    @Retention(RetentionPolicy.RUNTIME) //注解在哪个阶段执行
    @Documented
    public @interface OperLog {
        String operModul() default ""; // 操作模块
        String operDesc() default "";  // 操作说明
    }
    

    在这里插入图片描述

    编写aop类 OperLogAspect

    package com.xieyi.ga.Aspect;
    
    import cn.hutool.system.SystemUtil;
    import com.xieyi.ga.config.OperLog;
    import com.xieyi.ga.pojo.Operatelog;
    import com.xieyi.ga.pojo.User;
    import com.xieyi.ga.service.OperatelogService;
    import org.aspectj.lang.JoinPoint;
    import org.aspectj.lang.annotation.AfterReturning;
    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.stereotype.Component;
    import org.springframework.web.context.request.RequestAttributes;
    import org.springframework.web.context.request.RequestContextHolder;
    
    import javax.servlet.http.HttpServletRequest;
    import java.lang.reflect.Method;
    import java.util.Date;
    import java.util.HashMap;
    import java.util.Map;
    
    /**
     * @Author Joker DJ
     * @Date 2021/3/17 16:10
     * @Version 1.0
     */
    @Aspect
    @Component
    public class OperLogAspect {
    
    
        @Autowired 
        private OperatelogService operatelogService; //日志操作接口
        /**
         * 设置操作日志切入点 记录操作日志 在注解的位置切入代码
         */
        @Pointcut("@annotation(com.xieyi.ga.config.OperLog)")
        public void operLogPoinCut() {
        }
    
        /**
         * 设置操作异常切入点记录异常日志 扫描所有controller包下操作
         */
        @Pointcut("execution(* com.xieyi.ga.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);
            Operatelog operlog = new Operatelog();
            try {
                // 从切面织入点处通过反射机制获取织入点处的方法
                MethodSignature signature = (MethodSignature) joinPoint.getSignature();
                // 获取切入点所在的方法
                Method method = signature.getMethod();
                // 获取操作
                OperLog opLog = method.getAnnotation(OperLog.class);
                if (opLog != null) {
                    String operModul = opLog.operModul();
                    String operDesc = opLog.operDesc();
                    operlog.setModular(operModul); // 操作模块
                    operlog.setOperation(operDesc); // 操作描述
                }
                User users =(User) request.getSession().getAttribute("users");
                operlog.setUid(users.getId());
                operlog.setUsername(users.getUsername());
                operlog.setIp(SystemUtil.getHostInfo().getAddress());//ip地址
                operlog.setOperatetime(new Date()); // 创建时间
                operatelogService.inseartOperatelog(operlog);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
    
    

    测试注解

     @OperLog(operDesc = "查看日志",operModul = "系统管理-日志管理")
    

    在这里插入图片描述

    完整内容

    
    
    /**
     * 切面处理类,操作日志异常日志记录处理
     *
     * @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 + "
    ");
            }
            String message = exceptionName + ":" + exceptionMessage + "
    	" + strbuff.toString();
            return message;
        }
    }
    

    更多内容参考:https://www.cnblogs.com/cmt/p/14553189.html

    joker_dj
  • 相关阅读:
    [io PWA] keynote: Launching a Progressive Web App on Google.com
    hdu 4491 Windmill Animation
    BNU Concentric Rings
    Android 如何去掉手机中横竖屏切换时的转屏动画?
    IOS NSString 用法详解
    MySQL有关1042 Can’t get hostname for your address的问题分析解决过程
    网站出现问题时,站长该如何解决
    [置顶] IOS用CGContextRef画各种图形(文字、圆、直线、弧线、矩形、扇形、椭圆、三角形、圆角矩形、贝塞尔曲线、图片)
    具备这5点因素,你就是一名合格的网络编辑
    IOS 新消息通知提示-声音、震动
  • 原文地址:https://www.cnblogs.com/joker-dj/p/14836015.html
Copyright © 2011-2022 走看看