千家信息网

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

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,异常信息:java.lang.IllegalStateException:Cannot call sendRedirect() after the response has been committe
千家信息网最后更新 2025年01月23日struts/spring偶尔出现java.lang.IllegalStateException

异常信息:

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

异常原因:

多线程并发导致;

解决方法:

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

配置示例:

scope="prototype">

0