check the value of ${record.type} print it on jsp
becuse
<c:if test="${'U' eq 'U'}">demo</c:if>
it works for me in jsp
or if you have a version conflict, then
try below it can help
<c:if test = "${record.type == 'U'}">demo</c:if>
but make sure the value of ${record.type}
source share