使用 JSTL 迭代 Guava 表
我正在使用 Guava 库(以前的 Google Collections)中的 Table 类(特别是 HashBasedTable)。我正在使用 Spring MVC,并将我的 bean 打包到控制器类中的此表中后,我想在 JSP 页面上迭代它。
我该怎么做呢?下面是我一直在尝试的简化版本。
<c:forEach var="rowElement" items="${resultsCL.rowKeySet}">
<c:forEach var="columnElement" items="${resultsCL.columnKeySet}">
${resultsCL.get(rowElement, columnElement)}">
</c:forEach>
</c:forEach>
I am using the Table class (specifically the HashBasedTable) from the Guava library (formerly Google Collections). I am using Spring MVC and after packaging my beans into this Table in my controller class, I want to iterate over it on my JSP page.
How would I go about doing that? Below is a simplified version of what I'd been trying.
<c:forEach var="rowElement" items="${resultsCL.rowKeySet}">
<c:forEach var="columnElement" items="${resultsCL.columnKeySet}">
${resultsCL.get(rowElement, columnElement)}">
</c:forEach>
</c:forEach>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rowKeySet
和columnKeySet
不是 getter 方法,因此您不能使用bean.property
语法调用它们。您需要调用这些方法。即resultCL.rowKeySet()
和resultCL.columnKeySet()
请注意,这可能不适用于不支持方法调用的旧版本 EL。
rowKeySet
andcolumnKeySet
are not getter-methods, so you can't call them withbean.property
syntax. You need to invoke the methods. I.e.resultCL.rowKeySet()
andresultCL.columnKeySet()
Note that this may not work with older versions of EL that do not support method invocations.