标签:添加 red 对象 示例 redirect spring stat 出现 针对
异常信息:
java.lang.IllegalStateException:Cannot call sendRedirect() after the response has been committed.
异常原因:
多线程并发导致;
解决方法:
需要添加scope=”prototype”这个配置;
这个参数是让spring针对一个http请求创建一个Action对象;
如果没有这个参数,默认的参数是值是singleton,表示是单例.而单例对象在并发请求时导致多线程重入。
配置示例:
<bean id=”xxAction” class=”xx.XxAction” scope=”prototype”></bean>
struts/spring偶尔出现java.lang.IllegalStateException
标签:添加 red 对象 示例 redirect spring stat 出现 针对
原文地址:http://blog.51cto.com/13508140/2059621