I would like to construct a string with "%" in it in a <c:set> tag.
Here it goes:
<c:set var="test" value="${somethingA + '%' }" />
But this always give me a number format exception.
java.lang.NumberFormatException: For input string: "%"
So how do I work around this?