热门IT资讯网

struts/spring偶尔出现java.lang.IllegalStateException

发表于:2024-11-22 作者:热门IT资讯网编辑
编辑最后更新 2024年11月22日,异常信息:java.lang.IllegalStateException:Cannot call sendRedirect() after the response has been committe

异常信息:

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

异常原因:

多线程并发导致;

解决方法:

需要添加scope="prototype"这个配置;
这个参数是让spring针对一个http请求创建一个Action对象;
如果没有这个参数,默认的参数是值是singleton,表示是单例.而单例对象在并发请求时导致多线程重入。

配置示例:

scope="prototype">

0