使用 JSTL 迭代 Guava 表

发布于 2024-11-26 02:46:26 字数 441 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装纯掩盖桑 2024-12-03 02:46:26

rowKeySetcolumnKeySet 不是 getter 方法,因此您不能使用 bean.property 语法调用它们。您需要调用这些方法。即 resultCL.rowKeySet()resultCL.columnKeySet()

请注意,这可能不适用于不支持方法调用的旧版本 EL。

rowKeySet and columnKeySet are not getter-methods, so you can't call them with bean.property syntax. You need to invoke the methods. I.e. resultCL.rowKeySet() and resultCL.columnKeySet()

Note that this may not work with older versions of EL that do not support method invocations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文