是否可以在jsp scriptlet中访问struts2变量?

发布于 2024-07-22 19:07:57 字数 237 浏览 6 评论 0原文

是否可以在jsp scriptlet中访问struts2变量?

如果我有 struts2 变量,例如

<s:set var="test" value="%{'true'}"/>

我可以在 JSP scriptlet 中使用变量“test”吗?

如果是。 这怎么可能?

谁能提供一些想法吗?

谢谢。

Is it possible to access struts2 variable in jsp scriptlet?

If I have struts2 variable like

<s:set var="test" value="%{'true'}"/>

Can I use variable "test" in JSP scriptlet?

If yes. How is it possible?

Can anyone give some idea about it?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不及他 2024-07-29 19:07:57

您甚至可以使用请求对象来获取操作变量。 例如,如果操作中有变量 String userName,则可以使用

<%
String userName = (String) request.getAttribute("userName");
%>

You can even use the request object to get the action variable. For example, if you have a variable String userName in the action, you can use

<%
String userName = (String) request.getAttribute("userName");
%>
琉璃繁缕 2024-07-29 19:07:57

是的,

<s:set var="jspVariable" value="%{strutsVariable}"/>
<jsp:useBean id="jspVariable" type="com.example.Object" />
<%=jspVariable%>

Yes,

<s:set var="jspVariable" value="%{strutsVariable}"/>
<jsp:useBean id="jspVariable" type="com.example.Object" />
<%=jspVariable%>
最冷一天 2024-07-29 19:07:57
<jsp:useBean id="test" class="java.lang.String" scope="request"/>

<%
         test = "false";
%>

1. outside scriptlet: <c:out value="${test}"/>   <!-- will not print anything -->

<%
    out.println("2. in scriptlet: " + test);     // will print false
%>

<c:set var="test" value="true" />

3. outside scriptlet: <c:out value="${test}"/>   <!-- will print true -->

<%
    out.println("4. in scriptlet: " + test);     // will print false
%>
<jsp:useBean id="test" class="java.lang.String" scope="request"/>

<%
         test = "false";
%>

1. outside scriptlet: <c:out value="${test}"/>   <!-- will not print anything -->

<%
    out.println("2. in scriptlet: " + test);     // will print false
%>

<c:set var="test" value="true" />

3. outside scriptlet: <c:out value="${test}"/>   <!-- will print true -->

<%
    out.println("4. in scriptlet: " + test);     // will print false
%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文