How can I comment a JSP expression like: <%= map.size() %>
<%= map.size() %>
Is there something like <%= // map.size() %>?
<%= // map.size() %>?
When you don't want the user to see the comment use:
<%-- comment --%>
If you don't care / want the user to be able to view source and see the comment you can use:
When in doubt use the JSP comment.