How comment a JSP expression?

后端 未结 7 2235
栀梦
栀梦 2020-12-23 00:16

How can I comment a JSP expression like: <%= map.size() %>

Is there something like <%= // map.size() %>?

7条回答
  •  -上瘾入骨i
    2020-12-23 01:03

    My Suggestion best way use comments in JSP page <%-- Comment --%> . Because It will not displayed (will not rendered in HTML pages) in client browsers.

提交回复
热议问题