Struts2标签 使用pageContext.getAttribute("myAtt")返回null

在Struts2 API帮助文档中IteratorGeneratorTag类的说明找到如下例子
Example Three:
Generate an iterator with var attribute
 <s:generator val="%{'aaa,bbb,ccc,ddd,eee'}" count="4" separator="," var="myAtt" />
 <%
  Iterator i = (Iterator) pageContext.getAttribute("myAtt");
  while(i.hasNext()) {
      String s = (String) i.next(); %>
      <%=s%> <br/>
 <%    }
 %>

This generates an iterator and put it in the PageContext under the key as specified by the var attribute.

后copy上面整段代码,执行后,页面显示错误信息,报java.lang.NullPointerException。

改代码,如下:
<s:generator val="%{'aaa,bbb,ccc,ddd,eee'}" count="4" separator="," var="myAtt" />
<%
  Iterator i = (Iterator) pageContext.getAttribute("myAtt");
  if(i == null) {%>
	<h1>OH,My God!</h1>  
  <%}else{
	  while(i.hasNext()) {
	      String s = (String) i.next(); %>
	      <%=s%> <br/>
	 <%    }
	 
  }%>

再次执行,结果显示:OH,My God!
从结果可知,pageContext.getAttribute("myAtt");获取不到对象,把它改为pageContext.getAttribute("myAtt",PageContext.REQUEST_SCOPE);即可,结果显示:
aaa
bbb
ccc
ddd

PS:
1.在Debug的过程中也未发现pageContext的attributes下有myAtt的key,而在value stack中可以找到。
2.Struts2中的request是org.apache.struts2.dispatcher.StrutsRequestWrapper。
Method Summary
Object getAttribute(String s)
          Gets the object, looking in the value stack if not found

上面不知官方的例子为何不行?如果你知道,请不吝赐教!谢谢!
有空的话,欢迎到 红番薯逛逛

你可能感兴趣的:(apache)