使用這個aop日志處理, 在aspect中能獲取,方法傳入的入?yún)?/h1>
使用這個aop日志處理, 在aspect中能獲取,方法傳入的入?yún)?/p>
使用這個aop日志處理, 在aspect中能獲取,方法傳入的入?yún)?/p>
使用這個aop日志處理, 在aspect中能獲取,方法傳入的入?yún)?/p>
2018-02-21
上代碼來得直接:
// 一般,需要記錄的信息有:url、method、ip、類方法、參數(shù)
@Before("log()")
public void doBefore(JoinPoint joinPoint){
? ?logger.info("Before");
? ?ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); ? ? ? HttpServletRequest request ?= attributes.getRequest();
? ?//url ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//method
? ?logger.info("url={}",request.getRequestURL()); ? ? ? logger.info("method={}",request.getMethod());
? ?//ip ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?//類方法
? ?logger.info("ip={}",request.getRemoteAddr()); ? ? ? ?logger.info("class_method={}",joinPoint.getSignature().getDeclaringTypeName()+"."+joinPoint.getSignature().getName());
? ?//參數(shù)
? ?logger.info("args={}",joinPoint.getArgs());
}
舉報(bào)
2018-02-22
可以啊,joinPoint.getArgs()就可以了(JoinPoint是隱性的傳入?yún)?shù))