zoukankan      html  css  js  c++  java
  • 日志系列【SpringBoot使用Aop实现格式化日志】

    1.最终实现效果

    2.在pom中引入Aop依赖(可以先写个@Aspect注解,如果不报错,说明项目中引入过aop依赖了,不用再重复引入下面的依赖)

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

    3.这里我项目中用了swagger,为了不重复写注释,我直接用了@ApiOperation注解作为切点,当然,也可以自定义注解,把ApiOperation换成自定义的就行了。

    package com.system.annotation.Handler;
    
    import io.swagger.annotations.ApiOperation;
    import lombok.extern.slf4j.Slf4j;
    import org.aspectj.lang.JoinPoint;
    import org.aspectj.lang.ProceedingJoinPoint;
    import org.aspectj.lang.annotation.*;
    import org.aspectj.lang.reflect.MethodSignature;
    import org.springframework.stereotype.Component;
    import org.springframework.web.context.request.RequestContextHolder;
    import org.springframework.web.context.request.ServletRequestAttributes;
    
    import javax.servlet.http.HttpServletRequest;
    import java.lang.reflect.Method;
    
    @Slf4j
    @Aspect
    @Component
    public class LogHandler {
    
        @Pointcut("@annotation(io.swagger.annotations.ApiOperation)")
        public void webLog() {
        }
    
        @Around("webLog()")
        public Object doAround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
            long startTime = System.currentTimeMillis();
            Object result = proceedingJoinPoint.proceed();
            //打印出参
            log.info("Response Args : {}", result);
            //执行耗时
            log.info("exe-time      : {} ms", System.currentTimeMillis() - startTime);
            log.info("============================================End==================================================="+System.lineSeparator());
            return result;
        }
    
        @Before("webLog()")
        public void doBefore(JoinPoint joinPoint){
            ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
            HttpServletRequest request = attributes.getRequest();
            MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature();
            Method method = methodSignature.getMethod();
            ApiOperation annotation = method.getAnnotation(ApiOperation.class);
            String msg = annotation.value();
            log.info(System.lineSeparator());
            log.info("============================================Start=================================================");
            //打印请求的url
            log.info("URL           : {}",request.getRequestURL().toString());
            log.info("Description   : {}",msg);
            log.info("HTTP Method   : {}",request.getMethod());
            log.info("Class Method  : {},{}",joinPoint.getSignature().getDeclaringTypeName(),joinPoint.getSignature().getName());
            log.info("IP            : {}",request.getRemoteAddr());
            Object[] args = joinPoint.getArgs();
            log.info("Request Args  : {}",args);
        }
    
        @After("webLog()")
        public void doAfter() throws Throwable{
            log.info("==========================================Response=================================================");
        }
    }

    4.自定义注解(可以不自定义,我直接用的ApiOperation)

    package com.jiulong.springboot_validator.annotation;
    
    import java.lang.annotation.*;
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD})
    @Documented
    public @interface WebLog {
    
        /**
         * 日志描述信息
         *
         * @return String
         */
        String value() default "";
    }
  • 相关阅读:
    【学习】jquery.placeholder.js让IE浏览器支持html5的placeholder
    【特效】体验很好的导航hover效果移出恢复当前位置
    【学习】滚动延迟加载插件scrollLoading用法
    【转载】jQuery全屏滚动插件fullPage.js
    【原创】自用css reset
    【转载】jQuery手机移动端触屏日历日期选择
    【学习】条码扫描器:QuaggaJS
    【学习】苹果iPhone safari浏览器样式重置修复按钮圆角bug
    将SeqReader打包成可执行的jar包
    Java向上转型和向下转型
  • 原文地址:https://www.cnblogs.com/hujunwei/p/15559298.html
Copyright © 2011-2022 走看看