I've seen some posts about date comparisons in JSTL, but I still can't get it to work.
I have a date field, which I want to test whether is after 01-01-1970
.
<c:if test="${user.BirthDate > whatGoesHere}">
<doSomeLogic/>
</c:if>
Maybe a bean should be used?
Thanks !