您的位置:首页 > 编程语言 > Java开发

【SSH问题】java.lang.IllegalStateException: Cannot call sendError() after the response has been committe

2017-05-16 13:17 447 查看
1、问题描述

严重: Servlet.service() for servlet [default] in contextwith path [/OxygenCloud] threw exception

java.lang.IllegalStateException:Cannot call sendError() after the response has been committed






2、问题分析

从提示错误的字面意思判断“Cannotcall sendError() after the response has been committed”,“当response被提交后不能调用sendError()”。

出现这个错误,应该是多次response导致的,可以这么理解,http server发送response后就关闭了socket,这个时候再次发送response给http client就会出现这个问题。

例子:





3、问题解决

查看我的代码里面的情况:



重启运行,这个问题就没有了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐