What is the difference, if any, between the keyword 'eq' and the operator '==' in JSP Expression Language?
In code, what is the difference between:
<c:if test="${var1 eq var2}">some code</c:if>
and
<c:if test="${var1 == var2}">some code</c:if>