zoukankan      html  css  js  c++  java
  • springboot aop示例

    package com.melon.aop;
    
    import com.melon.utils.GSON;
    import lombok.extern.log4j.Log4j;
    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.springframework.stereotype.Component;
    import org.springframework.web.context.request.RequestContextHolder;
    import org.springframework.web.context.request.ServletRequestAttributes;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    
    /**
     * Created by zhiqi.shao on 2017/5/19.
     */
    @Log4j
    @Aspect
    @Component
    public class WebLogAspect {
    
        ThreadLocal<Long> startTime = new ThreadLocal<>();
    
        @Pointcut("execution(public * com.melon.web..*.*(..))")
        public void webLog(){}
    
        @Before("webLog()")
        public void doBefore(JoinPoint joinPoint) throws Throwable {
            ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
            HttpServletRequest request = attributes.getRequest();
            log.info("*****request url:" + request.getRequestURL());
    
            StringBuilder sb = new StringBuilder();
            Object[] os = joinPoint.getArgs();
            for (Object o : os) {
                if (o instanceof HttpSession ||o instanceof HttpServletResponse || o instanceof HttpServletRequest|| o instanceof  Exception) {
                    continue;
                }
                sb.append(GSON.toJson(o) + ":");
            }
            log.info("*****request parameters:" + sb.toString());
    
            startTime.set(System.currentTimeMillis());
    
            // 省略日志记录内容
        }
    
        @AfterReturning(returning = "ret", pointcut = "webLog()")
        public void doAfterReturning(Object ret) throws Throwable {
            // 处理完请求,返回内容
            log.info("*****response contents : " + GSON.toJson(ret));
            log.info("*****response time : " + (System.currentTimeMillis() - startTime.get()) + "ms");
        }
    
    
    }
    

      

  • 相关阅读:
    利用guava来实现本地的cache缓存
    加减乘除工具类BigDecimalUtil
    linux使用apache发布静态html网页
    为什么从pycharm中打开的html文件会显示404?
    unittest测试框架生成可视化测试报告-BeautifulReport
    python虚拟环境迁移
    linux查看系统版本
    Webhook到底是个啥?
    钩子函数和回调函数的区别
    LookupError: "gw_lt" is not among the defined enum values
  • 原文地址:https://www.cnblogs.com/shaozhiqi/p/8846878.html
Copyright © 2011-2022 走看看