Hi Guys,
just was wondering if there is a way to access a method from my class without creating a custom taglib.
Example I got a class which provides 4 methods: hasDisplay(), hasCreate(), hasDelete() and hasEdit() - all of them just returning a boolean value.
From my jsp I just want to
<c:if test="{ar.hasEdit}"></c:if>
But this only works with getter and setter methods, am I right?