首页 > 编程语言 > 详细

java.lang.IllegalStateException: It is illegal to call this method if the current request is not in asynchronous mode

时间:2021-07-02 23:13:10      阅读:24      评论:0      收藏:0      [点我收藏+]

情景:AOP获取请求参数,并转成JSON字符串时抛出

原因

ServletRequest,ServletResponse,MultipartFile不能被序列化,需要排除之后再做序列化。

示例: 

Object[] args = joinPoint.getArgs();
Object[] arguments  = new Object[args.length];
for (int i = 0; i < args.length; i++) {
  if (args[i] instanceof ServletRequest || args[i] instanceof ServletResponse || args[i] instanceof MultipartFile) {
                //ServletRequest不能序列化,从入参里排除,否则报异常:java.lang.IllegalStateException: It is illegal to call this method if the current request is not in asynchronous mode (i.e. isAsyncStarted() returns false)
                //ServletResponse不能序列化 从入参里排除,否则报异常:java.lang.IllegalStateException: getOutputStream() has already been called for this response
                continue;
  }
   arguments[i] = args[i];
}
paramter = JSONObject.toJSONString(arguments);

 

java.lang.IllegalStateException: It is illegal to call this method if the current request is not in asynchronous mode

原文:https://www.cnblogs.com/stxyg/p/14964788.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!