vote up 0 vote down star

Hello friends,

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.

flag

0% accept rate

1 Answer

vote up 0 vote down
<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
%>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.