JSTL& Spring:使用参数访问方法

时间:2010-09-28 10:34:22

标签: java spring jsp jstl el

我有一个带方法的对象

  public boolean hasPermission(String role) {
   return permissions.contains(role);
  }

我想做相同的事情:

<c:if test="${row.hasPermission(role)}">
    <td></td>
</c:if>

但我无法从JSP文件中访问hasPermission方法。我该怎么办?

1 个答案:

答案 0 :(得分:6)

EL的最新版本(以tomcat 7为例)支持此(${obj.method(arg)}

如果你有旧版本,你有两个选择: