It is illegal to call this method if the current request is not in asynchron
问题
在使用切面+自定义注解实现日志记录时报的错
原因
proceedingJoinPoint.getArgs()返回的数组中携带有Request或者Response对象,导致序列化异常
解决
过滤掉之后再转换
//获取传参信息 |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 IT者!
在使用切面+自定义注解实现日志记录时报的错
proceedingJoinPoint.getArgs()返回的数组中携带有Request或者Response对象,导致序列化异常
过滤掉之后再转换
//获取传参信息 |