by198787 发表于 2020-5-21 15:59:44

使用jeecgboot做对外接口

现在需要一个作为微信支付成功的回调接口,该接口是微信会推送一个xml格式的数据进系统,系统记录该推送数据。
我遇到的问题是在系统的切面日志功能中,遇到了一个异常
It is illegal to call this method if the current request is not in asynchron
代码定位到org.jeecg.modules.system.aspect.AutoLogAspect类
的getReqestParams 方法
if ("POST".equals(httpMethod) || "PUT".equals(httpMethod) || "PATCH".equals(httpMethod)) {
   Object[] paramsArray = joinPoint.getArgs();params = JSONObject.toJSONString(paramsArray);
}
在JSONObject.toJSONString过程中出现的异常。
那么我现在的处理办法是
if(data instanceof HttpServletRequest||data instanceof HttpServletResponse)如果是HttpServletRequest、HttpServletResponse的实例则不进行字符串转换
我想了解会不会有什么问题,对系统的功能是否有影响
页: [1]
查看完整版本: 使用jeecgboot做对外接口