Here is the code:
<h3>before showShipping = [${showShipping}]</h3>
<c:if test="${showShipping eq '5'}">
<h3>after showShipping = [${showShipping}]</h3>
</c:if>
And the output is:
before showShipping = [1]
after showShipping = [1]
Why am I seeing the after????