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

Categories

0 votes
376 views
in Technique[技术] by (71.8m points)

java - JSTL & Spring: Accessing methods with arguments

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

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

1 Answer

0 votes
by (71.8m points)

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:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...