如何在Struts 1.0.2中模仿JSTL核心集(c:set)

时间:2012-08-19 21:28:41

标签: jsp jstl struts-1

是的,没错。旧版应用维护。

我如何模仿旧学校Struts 1.0.2中的<c:set var='myvar' scope='requqst' value='val' />

假设我无法将JSTL添加到应用程序中。

1 个答案:

答案 0 :(得分:1)

你可以在不触及Struts的情况下使用scriptlet来做到这一点 - 认为这是最后的手段

<%
    request.setAttribute("myvar", "val");
%>

我不确定Struts 1.0.2(it should be okay),但我知道在v1.3.8中,这也可行:

<bean:define id="myvar" type="java.lang.String" value="val"/>

请注意the allowed types are extremely limited