mirror of https://github.com/elunez/eladmin
83 lines
2.5 KiB
Java
83 lines
2.5 KiB
Java
package me.zhengjie.aspect;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import me.zhengjie.domain.Log;
|
|
import me.zhengjie.service.LogService;
|
|
import me.zhengjie.utils.RequestHolder;
|
|
import me.zhengjie.utils.SecurityUtils;
|
|
import me.zhengjie.utils.StringUtils;
|
|
import me.zhengjie.utils.ThrowableUtil;
|
|
import org.aspectj.lang.JoinPoint;
|
|
import org.aspectj.lang.ProceedingJoinPoint;
|
|
import org.aspectj.lang.annotation.AfterThrowing;
|
|
import org.aspectj.lang.annotation.Around;
|
|
import org.aspectj.lang.annotation.Aspect;
|
|
import org.aspectj.lang.annotation.Pointcut;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
/**
|
|
* @author Zheng Jie
|
|
* @date 2018-11-24
|
|
*/
|
|
@Component
|
|
@Aspect
|
|
@Slf4j
|
|
public class LogAspect {
|
|
|
|
private final LogService logService;
|
|
|
|
private long currentTime = 0L;
|
|
|
|
public LogAspect(LogService logService) {
|
|
this.logService = logService;
|
|
}
|
|
|
|
/**
|
|
* 配置切入点
|
|
*/
|
|
@Pointcut("@annotation(me.zhengjie.aop.log.Log)")
|
|
public void logPointcut() {
|
|
// 该方法无方法体,主要为了让同类中其他方法使用此切入点
|
|
}
|
|
|
|
/**
|
|
* 配置环绕通知,使用在方法logPointcut()上注册的切入点
|
|
*
|
|
* @param joinPoint join point for advice
|
|
*/
|
|
@Around("logPointcut()")
|
|
public Object logAround(ProceedingJoinPoint joinPoint) throws Throwable {
|
|
Object result;
|
|
currentTime = System.currentTimeMillis();
|
|
result = joinPoint.proceed();
|
|
Log log = new Log("INFO",System.currentTimeMillis() - currentTime);
|
|
HttpServletRequest request = RequestHolder.getHttpServletRequest();
|
|
logService.save(getUsername(), StringUtils.getBrowser(request), StringUtils.getIp(request),joinPoint, log);
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* 配置异常通知
|
|
*
|
|
* @param joinPoint join point for advice
|
|
* @param e exception
|
|
*/
|
|
@AfterThrowing(pointcut = "logPointcut()", throwing = "e")
|
|
public void logAfterThrowing(JoinPoint joinPoint, Throwable e) {
|
|
Log log = new Log("ERROR",System.currentTimeMillis() - currentTime);
|
|
log.setExceptionDetail(ThrowableUtil.getStackTrace(e).getBytes());
|
|
HttpServletRequest request = RequestHolder.getHttpServletRequest();
|
|
logService.save(getUsername(), StringUtils.getBrowser(request), StringUtils.getIp(request), (ProceedingJoinPoint)joinPoint, log);
|
|
}
|
|
|
|
public String getUsername() {
|
|
try {
|
|
return SecurityUtils.getUsername();
|
|
}catch (Exception e){
|
|
return "";
|
|
}
|
|
}
|
|
}
|