记录log+Aop mongon记录日志


@Aspect   //定义一个切面
@Configuration
public class LogAop {
    private Logger log = LoggerFactory.getLogger(getClass());
    @Autowired
    TokenHelper tokenHelper;

    @Autowired
    UserMapper userMapper;

    @Autowired
    MongoTemplate mongoTemplate;

    @Autowired
    AllRoleService allRoleService;

    // 定义切点Pointcut
    @Pointcut("execution(* com.trvideo.controller.*.*.*(..))")
    public void excudeService() {
        System.out.println("时间:"+ this.getDate());
    }
	//切入内容环绕
    @Around("execution(* com.trvideo.controller.*.*.*(..))")
    public Object doAround(ProceedingJoinPoint pjp) throws Throwable {
        RequestAttributes ra = RequestContextHolder.getRequestAttributes();
        ServletRequestAttributes sra = (ServletRequestAttributes) ra;
        HttpServletRequest request = sra.getRequest();

        String url = request.getRequestURL().toString();
        String method = request.getMethod();
        String uri = request.getRequestURI();
        String queryString = request.getQueryString();
        System.out.println("请求开始, 各个参数, url: "+url+", method: "+method+", uri: "+uri+", params: "+queryString);
        // result的值就是被拦截方法的返回值
        Object result = pjp.proceed();
 		Gson gson = new Gson();
       //获取msg
        String msg = JSONObject.parseObject(gson.toJson(result)).getString("msg");
        //最后把 msg 存入mongondb
        //db.mongon.insert({msg:'xxxxxx'})
        return result;
    }


 public static String getDate() {
        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
        String time = df.format(new Date());
        return time;
    }
}













评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值