59 lines
2.2 KiB
Java
59 lines
2.2 KiB
Java
package com.yupi.springbootinit.aop;
|
||
|
||
import java.util.UUID;
|
||
import javax.servlet.http.HttpServletRequest;
|
||
import lombok.extern.slf4j.Slf4j;
|
||
import org.apache.commons.lang3.StringUtils;
|
||
import org.aspectj.lang.ProceedingJoinPoint;
|
||
import org.aspectj.lang.annotation.Around;
|
||
import org.aspectj.lang.annotation.Aspect;
|
||
import org.springframework.stereotype.Component;
|
||
import org.springframework.util.StopWatch;
|
||
import org.springframework.web.context.request.RequestAttributes;
|
||
import org.springframework.web.context.request.RequestContextHolder;
|
||
import org.springframework.web.context.request.ServletRequestAttributes;
|
||
|
||
/**
|
||
* 请求响应日志 AOP
|
||
*
|
||
* @author <a href="https://github.com/liyupi">程序员鱼皮</a>
|
||
* @from <a href="https://yupi.icu">编程导航知识星球</a>
|
||
**/
|
||
@Aspect
|
||
@Component
|
||
@Slf4j
|
||
public class LogInterceptor {
|
||
|
||
/**
|
||
* 执行拦截
|
||
*/
|
||
@Around("execution(* com.yupi.springbootinit.controller.*.*(..))")
|
||
public Object doInterceptor(ProceedingJoinPoint point) throws Throwable {
|
||
// 计时
|
||
StopWatch stopWatch = new StopWatch();
|
||
stopWatch.start();
|
||
// 获取请求路径
|
||
RequestAttributes requestAttributes = RequestContextHolder.currentRequestAttributes();
|
||
HttpServletRequest httpServletRequest = ((ServletRequestAttributes) requestAttributes).getRequest();
|
||
// 生成请求唯一 id
|
||
String requestId = UUID.randomUUID().toString();
|
||
String url = httpServletRequest.getRequestURI();
|
||
// 获取请求参数
|
||
Object[] args = point.getArgs();
|
||
String reqParam = "[" + StringUtils.join(args, ", ") + "]";
|
||
// 输出请求日志
|
||
log.info("request start,id: {}, path: {}, ip: {}, params: {}", requestId, url,
|
||
httpServletRequest.getRemoteHost(), reqParam);
|
||
// log.info("request start,id: {}, path: {}, ip: {}", requestId, url,
|
||
// httpServletRequest.getRemoteHost());
|
||
// 执行原方法
|
||
Object result = point.proceed();
|
||
// 输出响应日志
|
||
stopWatch.stop();
|
||
long totalTimeMillis = stopWatch.getTotalTimeMillis();
|
||
log.info("request end, id: {}, cost: {}ms", requestId, totalTimeMillis);
|
||
return result;
|
||
}
|
||
}
|
||
|