【发布时间】:2015-06-07 04:44:01
【问题描述】:
下载报告间歇性失败。前端错误:内部服务器错误 - 500。
单击下载后,控件转到操作类。有时在大约之后。一分钟后,另一个线程在没有任何前端操作的情况下自动调用,然后两个线程在前端抛出 500 Server 错误的操作类中运行。
有人遇到过这样的问题吗?
Struts 配置 sn-p:
<action input="/Report_Selection.jsp" name="ReportForm" path="/report" scope="session" type="com.ReportAction">
<forward name="Download" path="/DownloadReportAction.do"/>
<forward name="failure" path="/Report_Selection.jsp"/>
<forward name="exception" path="/Error.jsp"/>
</action>
<action name="ReportForm" path="/DownloadReportAction" scope="session" type="com.DownloadReportAction">
</action>
【问题讨论】:
标签: thread-safety websphere threadpool struts-1 critical-section