文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

在springboot中怎么使用AOP进行全局日志记录

2023-06-21 20:14

关注

小编给大家分享一下在springboot中怎么使用AOP进行全局日志记录,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

1、 spring AOP 是什么?

spring 的两大核心就是 IOC 和 AOP,AOP 是 spring 框架面向切面的编程思想,AOP是横切性的技术,将涉及多业务流程的通用功能抽取并单独封装,形成独立的切面,再将这些切面横向切入到业务流程指定的位置中。

2、spring AOP 能做什么?

AOP 主要是从切面入手,将日志记录、安全控制、事务处理、全局异常处理等全局功能从我们的业务逻辑代码中划分出来。

3、spring AOP 我能用 AOP 解决什么问题?

正好我这边需要做一个全局的日志,如果每个方法都去写日志记录,这样代码量非常大,而且代码繁琐冗余,全局记录的话,只需要在方法上增加一个注解就可以实现日志记录。

好了,不多bb,直接上代码实现

一、引入依赖,增加自定义注解

1、引入 maven 依赖

<!--利用 AOP 做操作日志记录-->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-aop</artifactId>        </dependency>

2、增加自定义注解 OperationLog

@Target(ElementType.METHOD) //注解放置的目标位置,METHOD是可注解在方法级别上@Retention(RetentionPolicy.RUNTIME) //注解执行阶段@Documentedpublic @interface OperationLog {    String operDesc() default "";  // 操作说明}

二、为自定义注解编写切面实现

@Aspect //标识一个切面类@Componentpublic class OperationLogAspect {    private static final Logger logger = LoggerFactory.getLogger(OperationLogAspect.class);    @Autowired    private OperatelogsService OperatelogsService;    @Autowired    private SysUserService userService;        @Pointcut("@annotation(com.wxw.annotation.OperationLog)")    public void operLogPoinCut() {    }        @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);        Operatelogs operlog = new Operatelogs();        try {            // 从切面织入点处通过反射机制获取织入点处的方法            MethodSignature signature = (MethodSignature) joinPoint.getSignature();            // 获取切入点所在的方法            Method method = signature.getMethod();            // 获取操作            OperationLog opLog = method.getAnnotation(OperationLog.class);            if (opLog != null) {                String operDesc = opLog.operDesc();                operlog.setfDescript(operDesc); // 操作描述            }            // 获取请求的类名            String className = joinPoint.getTarget().getClass().getName();            // 获取请求的方法名            String methodName = method.getName();            methodName = className + "." + methodName;            operlog.setfRequestMethod(methodName); // 请求方法            // 请求的参数            Object[] arguments = joinPoint.getArgs();            //判断参数数组是否为空            Stream<?> stream = ArrayUtils.isEmpty(arguments) ? Stream.empty() :  Arrays.asList(arguments).stream();            //过滤 joinPoint.getArgs()返回的数组中携带有Request或者Response对象            List<Object> logArgs = stream                    .filter(arg -> (!(arg instanceof HttpServletRequest) && !(arg instanceof HttpServletResponse)))                    .collect(Collectors.toList());            // 先将参数所在的list 转换成json 数组            JSONArray jsonArray = JSONArray.parseArray(JSON.toJSONString(logArgs));            //再转 json 字符串            String params = jsonArray.toJSONString();            operlog.setfRequestData(params); // 请求参数            operlog.setfResponseData(JSON.toJSONString(keys)); // 返回结果            SysUser user = getUser();            operlog.setfOptby(user != null ? user.getfUserid() : 0); // 请求用户ID            operlog.setfOptname(user != null ? user.getfUsercode() : "admin"); // 请求用户名称            operlog.setfOpton(new Date()); // 创建时间            operlog.setfIp(getIp()); // 请求IP            operlog.setfRequestUrl(request.getRequestURI()); // 请求URI            OperatelogsService.save(operlog);        } catch (Exception e) {            e.printStackTrace();        }    }        @AfterThrowing(pointcut = "operLogPoinCut()", throwing = "e")    public void saveExceptionLog(JoinPoint joinPoint, Throwable e) {        // 获取RequestAttributes        RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes();        // 从获取RequestAttributes中获取HttpServletRequest的信息        HttpServletRequest request = (HttpServletRequest) requestAttributes                .resolveReference(RequestAttributes.REFERENCE_REQUEST);        Operatelogs operlog = new Operatelogs();        try {            // 从切面织入点处通过反射机制获取织入点处的方法            MethodSignature signature = (MethodSignature) joinPoint.getSignature();            // 获取切入点所在的方法            Method method = signature.getMethod();            // 获取请求的类名            String className = joinPoint.getTarget().getClass().getName();            // 获取请求的方法名            String methodName = method.getName();            methodName = className + "." + methodName;            // 请求的参数            Object[] arguments = joinPoint.getArgs();             //判断参数数组是否为空            Stream<?> stream = ArrayUtils.isEmpty(arguments) ? Stream.empty() :  Arrays.asList(arguments).stream();            //过滤 joinPoint.getArgs()返回的数组中携带有Request或者Response对象            List<Object> logArgs = stream                    .filter(arg -> (!(arg instanceof HttpServletRequest) && !(arg instanceof HttpServletResponse)))                    .collect(Collectors.toList());            // 先将参数所在的list 转换成json 数组            JSONArray jsonArray = JSONArray.parseArray(JSON.toJSONString(logArgs));            //再转 json 字符串            String params = jsonArray.toJSONString();            operlog.setfRequestData(params); // 请求参数            operlog.setfRequestMethod(methodName); // 请求方法名            operlog.setfExceptionName(e.getClass().getName()); // 异常名称            operlog.setfResponseData(stackTraceToString(e.getClass().getName(), e.getMessage(), e.getStackTrace())); // 异常信息            SysUser user = getUser();            operlog.setfOptby(user != null ? user.getfUserid() : 0); // 请求用户ID            operlog.setfOptname(user != null ? user.getfUsercode() : "admin"); // 请求用户名称            operlog.setfOpton(new Date()); // 创建时间            operlog.setfRequestUrl(request.getRequestURI()); // 请求URI            operlog.setfIp(getIp()); // 请求IP            operatelogsService.save(operlog);        } catch (Exception e2) {            e2.printStackTrace();        }    }        public SysUser getUser() {        HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();        SysUser sysUser = null;        String token = request.getHeader("token");// 从 http 请求头中取出 token        if(token != null){            // 获取 token 中的 user id            String userId = JWT.decode(token).getAudience().get(0);            sysUser = userService.getOne(new QueryWrapper<SysUser>().lambda().eq(SysUser::getfUserid,                    userId));        }        return sysUser;    }        public String getIp() {        //获得本机的ip和名称        InetAddress addr = null;        try {            addr = InetAddress.getLocalHost();        } catch (UnknownHostException e) {            throw new CustomException(500,e.getMessage());        }        String ip = addr.getHostAddress();//      String hostname = addr.getHostName();        return ip;    }        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;    }}

三、使用自定义日志注解

在springboot中怎么使用AOP进行全局日志记录

将自定义注解加在方法上,请求方法之后,就可以将方法的日志记录到自己的数据库里面了。

看完了这篇文章,相信你对“在springboot中怎么使用AOP进行全局日志记录”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯