栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java > SpringBoot

SpringBoot AOP处理请求日志处理打印

SpringBoot 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

SpringBoot AOP处理请求日志处理打印

SpringBoot AOP处理请求日志处理打印
@Slf4j
@Aspect
@Configuration
public class RequestAopConfig {

    @Autowired
    private HttpServletRequest request;

    private static final ThreadLocal START_TIME_MILLIS = new ThreadLocal<>();

    @Pointcut("execution(* com.xxx.xxx.xxx..*(..)) " +
     "&&(@annotation(org.springframework.web.bind.annotation.PostMapping)" +
     "||@annotation(org.springframework.web.bind.annotation.GetMapping)" +
     "||@annotation(org.springframework.web.bind.annotation.PutMapping)" +
     "||@annotation(org.springframework.web.bind.annotation.DeleteMapping))")
    public void controllerMethodPointcut() {
    }

    
    @Before("controllerMethodPointcut()")
    public void before(JoinPoint joinPoint) {
 START_TIME_MILLIS.set(System.currentTimeMillis());
    }

    
    @AfterReturning(value = "controllerMethodPointcut()", returning = "result")
    public void afterReturning(JoinPoint joinPoint, Object result) {
 String logTemplate = "--------------- 执行成功 ---------------n请求开始---Send Request URL: {}, Method: {}, Params: {} n请求方法---ClassName: {}, [Method]: {}, execution time: {}ms n请求结束---Send Response Result: {}";
 log.info(logTemplate, request.getRequestURL(), request.getMethod(), JSON.toJSONString(joinPoint.getArgs()), joinPoint.getSignature().getDeclaringTypeName(), joinPoint.getSignature().getName(), (System.currentTimeMillis() - START_TIME_MILLIS.get()), JSON.toJSONString(result));
 START_TIME_MILLIS.remove();
    }

    
    @AfterThrowing(value = "controllerMethodPointcut()", throwing = "ex")
    public void afterThrowing(JoinPoint joinPoint, Throwable ex) {
 String logTemplate = "--------------- 执行失败 ---------------n异常请求开始---Send Request URL: {}, Method: {}, Params: {} n异常请求方法---ClassName: {}, [Method]: {}, execution time: {}ms n异常请求结束---Exception Message: {}";
 log.error(logTemplate, request.getRequestURL(), request.getMethod(), JSON.toJSONString(joinPoint.getArgs()), joinPoint.getSignature().getDeclaringTypeName(), joinPoint.getSignature().getName(), (System.currentTimeMillis() - START_TIME_MILLIS.get()), ex.getMessage());
 START_TIME_MILLIS.remove();
    }

    
    @After("controllerMethodPointcut()")
    public void after(JoinPoint joinPoint) {
    }
}

赵小胖个人博客

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/235045.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号