我正在尝试将我在 struts 操作中设置的集合显示到请求范围。但是当我尝试使用 struts<logic:iterate>
显示集合时,它说在任何范围内都找不到 str2 bean。
在动作类中:
Set<String> uniqueWords = new HashSet<String>(Arrays.asList(datetimestamp));
Collection str2 = new Vector();
System.out.println("UNique Array : "+uniqueWords);
String[] str1 = uniqueWords.toArray(new String[0]);
for(int p=0;p<str1.length;p++)
{
str2.add(str1[i]);
}
request.setAttribute("str2", str2);
我没有 getter setter 方法我只想在 JSP 中迭代这个集合
但是在JSP中,它不识别
收藏:
<logic:iterate name="str2" id="str2Id" indexId="idx" scope="request">
<p>
<script>
l[m]='<bean:write name="str2Id"/>';
m++;
</script>
</p>
</logic:iterate>
映射
<action path="/online" name="onlineMonitoringGraphForm"
scope="request" validate="true">
<forward name="success" path="/WEB-INF/jsp/Success.jsp" />
<forward name="failed" path="/WEB-INF/jsp/login.jsp" />
</action>
我不知道为什么 bean 在任何范围内都是不可见的?