for (int i = 0; i < joinPoint.getArgs().length; i++) {
Object object=joinPoint.getArgs()[i];
if (object instanceof HttpServletRequest || object instanceof HttpServletResponse) {
continue;
}
JSONObject jsonObject=JSONObject.parseObject(JSONObject.toJSONString(object));
}
1.Springboot Aop切面获取请求参数返回参数,请求ip请求方法类型,打印日志
2.https://blog.youkuaiyun.com/seesun2012/article/details/106762349