|
@@ -35,6 +35,11 @@ public class RequestLoggingAspect {
|
|
|
@Around("execution(* com.malk.mc.controller..*(..))")
|
|
|
public Object logAround(ProceedingJoinPoint joinPoint) throws Throwable {
|
|
|
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.currentRequestAttributes()).getRequest();
|
|
|
+ if(request.getRequestURI().contains("/api/mc/project/")){
|
|
|
+ return joinPoint.proceed();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
long startTime = System.currentTimeMillis();
|
|
|
|
|
|
// 捕获请求参数
|