Reputation: 40513
Here is my code:
<% request.setAttribute("lcItem", "Hello"); %>
If I do as following, I'm not getting the value:
<s:property value="%{lcItem}" />
<s:property value="lcItem" />
Any suggestions?
Upvotes: 5
Views: 6086
Reputation: 189
You can write your code 2 ways
<% request.setAttribute("lcItem", "Hello"); %>
<% pageContext.setAttribute("lcItem", "Hello"); %>
then if you want to access these values in Struts2 Components you might use #attr. as prefix.
Example
<s:property value="#attr.lcItem">
Note: It will work fine with request and "pageContext".
<s:property value="lcItem" /> will not work because "lcItem" is not available in the Value Stack.
Upvotes: 0
Reputation: 40513
This works perfectly..
<%
request.setAttribute("lcItem", LeftContentItem);
%>
<s:property value="#request['lcItem']" />
Note: According to the Scope we use we should specify the #request .. etc
Upvotes: 5