struts 2 中<bean:page>的等效标签是什么

问题描述 投票:0回答:2

我正在致力于从 Struts 1.x 到 Struts 2.0 的代码迁移

谁能告诉我 Struts 2.0 中以下行的等效标签

<bean:page id="req" property="request" /> is the tag in Struts 1.x

现在我想将 Struts 1.x 中的上述行转换为 Struts 2.0 中的等效行。

struts2 struts-1 struts-tags
2个回答
0
投票

没有直接的等价物。

<bean:page>
标签只是为 scriptlet 公开了一个页面范围的 bean,您不应该使用它。


0
投票

如果您想使用变量的

page
范围,您可以使用
<s:set>
标签的范围属性

<s:set var="req" value="#request" scope="page"/>

注意,

#request
指向Struts请求映射,它不是JSP的隐式请求对象,但它可以访问请求属性。

© www.soinside.com 2019 - 2024. All rights reserved.