I need to perform the equivalent of:
<c:if test="${dummyA == dummyB}">
where "dummyA" is a JSP variable, ie.
<%
String dummyA = ....
%>
and "dummyB" is a <spring:bind path="command.dummyB"> value.
How do I compare a JSP variable and a bound spring attribute in a JSTL if statement?
Any help is sincerely appreciated.
Jim


Reply With Quote