SpringBoot使用AOP统一处理Web请求日志

Posted smiledgo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot使用AOP统一处理Web请求日志相关的知识,希望对你有一定的参考价值。

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

@Aspect
@Component
public class WebLogAspect {

    private static final Logger logger = LoggerFactory.getLogger(WebLogAspect.class);
    //扫描包
    @Pointcut("execution(public * com.itmayiedu.controller.*.*(..))")
    public void webLog() {
    }

    @Before("webLog()")
    public void doBefore(JoinPoint joinPoint) throws Throwable {
        // 接收到请求,记录请求内容
        ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletRequest request = attributes.getRequest();
        // 记录下请求内容
        logger.info("URL : " + request.getRequestURL().toString());
        logger.info("HTTP_METHOD : " + request.getMethod());
        logger.info("IP : " + request.getRemoteAddr());
        Enumeration<String> enu = request.getParameterNames();
        while (enu.hasMoreElements()) {
            String name = (String) enu.nextElement();
            logger.info("name:{},value:{}", name, request.getParameter(name));
        }
    }

    @AfterReturning(returning = "ret", pointcut = "webLog()")
    public void doAfterReturning(Object ret) throws Throwable {
        // 处理完请求,返回内容
        logger.info("RESPONSE : " + ret);
    }
}

 

以上是关于SpringBoot使用AOP统一处理Web请求日志的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot2.0 使用AOP统一处理Web请求日志(完整版)

springboot Aop 统一处理Web请求日志

Spring Boot中使用AOP统一处理Web请求日志

Springboot中AOP统一处理请求日志

使用AOP统一处理Web请求日志

使用AOP统一处理Web请求日志