Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have an object with a method

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

I want to do the equivalent of:

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

But I cannot access the hasPermission method from within the JSP file. How can I do it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
374 views
Welcome To Ask or Share your Answers For Others

1 Answer

The latest version of EL (in tomcat 7 for ex.) supports this (${obj.method(arg)})

If you have an older version you have two options:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...