我正在使用struts 1.2。在一个动作类中,我得到的结果是我将请求作为attribute.ie request.setAttribute(" contarctNumber"," 123BB4")放入请求中。
现在的问题是,在设置了最终重定向到JSP的属性之后,我被重定向到多个其他页面。我想在这个jsp上显示这个请求属性,但这不能访问请求对象/属性。如何我可以在JSP中访问此请求属性吗?
答案 0 :(得分:0)
通过EL你可以找到它。
只需将其放入 jsp :
即可${contarctNumber}
<强> 编辑: 强>
看看这篇文章是否有帮助:
Sending redirect to another servlet/JSP without loosing the request parameters.