javax.servlet.ServletException:javax.servlet.jsp.JspTagException:不知道如何迭代提供的“项目”在 中
我有一个保存结果的 Bean。我需要使用 JSTL 对其进行迭代并呈现结果。这是 bean:
public class DetResults
{
private List<String> headings;
private List<Class<?>> types;
private List<Object[]> data;
public DetResults() {}
public List<String> getHeadings() { return this.headings; }
public String getHeading(int which) { return this.headings.get(which); }
public List<Class<?>> getTypes() { return this.types; }
public Class<?> getType(int which) { return this.types.get(which); }
public List<Object[]> getData( ) { return this.data; }
public Object[] getDataAtRow( int row ) { return this.data.get(row); }
public void setHeadings( List<String> val ) { this.headings = val; }
public void setHeadings( String[] val ) { this.headings = Arrays.asList(val); }
public void addHeading( String val )
{
if( this.headings == null ) this.headings = new ArrayList<String>();
this.headings.add(val);
}
public void setTypes( List<Class<?>> val ) { this.types = val; }
public void setTypes( Class<?> val[] ) { this.types = Arrays.asList(val); }
public void addType( Class<?> val )
{
if( this.types == null ) this.types = new ArrayList<Class<?>>();
this.types.add(val);
}
public void setData( List<Object[]> val ) { this.data = val; }
// allow NPE to get thrown
public void setDataAtRow( Object[] val, int row ) { this.data.set(row, val); }
public void appendDataRow( Object[] val )
{
if( data == null ) data = new ArrayList<Object[]>();
this.data.add(val);
}
public int getColumnCount() { return this.headings!=null?this.headings.size():0; }
}
这是将 bean 设置到 JSP 的处理程序:
DetResults results = detDAO.fetchDetResults(paramBean);
request.setAttribute("results", results);
action.setJspURI(".../.jsp");
我尝试按如下方式显示它:
<c:forEach var="results" items="${results}">
${results.heading}
</c:forEach>
但它引发了以下异常:
由以下原因引起:javax.servlet.ServletException:javax.servlet.jsp.JspTagException:不知道如何迭代
中提供的“项目”
如果我将结果记录在我的处理程序页面上,如下所示:
System.out.println( "\n\nthere are " + results.getColumnCount() + " columns in the result set" );
for( int i=0; i<results.getColumnCount(); i++ )
{
System.out.println( results.getHeading(i) + " --> " + results.getType(i) );
}
日志记录似乎在服务器上显示良好。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当
< ;c:forEach items>
未引用可迭代的有效对象。该对象应该是一个Object[]
(一个普通数组),一个集合
,迭代器
,
枚举
,地图
或字符串
(另请参阅源代码)。任何其他内容都不能通过
进行迭代。您的DetResults
类不是上述类型的实例,因此它将失败。您的
DetResults
类看起来不正确。它看起来基本上就像一颗神豆,具有多个单独实体的所有属性的集合。这是不对的。一个 Bean 类最多应该代表一个实体。重写您的DetResults
类,以便您基本上最终得到一个完整的 javabean 集合:以便您可以按如下方式访问它:
请注意,我已经修复了
属性也是如此,将其命名为与作用域中现有对象相同的名称是不正确的。它只会发生冲突。如果您确实坚持保持
DetResults
bean 不变,您可以按如下方式访问它:另请参阅:
That will happen when the
<c:forEach items>
does not refer a valid object over which it can iterate. The object should be anObject[]
(a plain array), aCollection
,Iterator
,Enumeration
,Map
orString
(see also source code). Anything else can't be iterated by<c:forEach>
. YourDetResults
class is not an instance of either of the aforementioned types, so it will fail.Your
DetResults
class doesn't look right. It look basically like one God bean with a collection of all properties of multiple individual entities. This is not right. A bean class should represent at most one entity. Rewrite yourDetResults
class so that you basically end up with with a fullworthy collection of javabeans:so that you can access it as follows:
Note that I have fixed the
<c:forEach var>
attribute as well, it is not right to give it the same name as an existing object in the scope. It would only clash.If you really insist to keep your
DetResults
bean as it is, you could access it as follows:See also:
您应该能够迭代标题
然后遍历数据......
或者类似的东西?
You should be able to iterate over the headings
And then over the data...
Or something along those lines?
检查 servlet 类中的以下代码:
并且在 中的 JSP 页面中应匹配相同的代码:
注意:
"productList"
名称应在 1 点 1 中完全匹配和 2那么它就会的。
这对我有用。
Check this below code in servlet class:
And the same should match in JSP page in
<c:forEach
:NOTE:
"productList"
name should match exactly in 1 point 1 and 2then it will.
It worked for me.