How comment a JSP expression?

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

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

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

相关标签:
7条回答
  • 2020-12-23 01:04

    One of:

    In html

    <!-- map.size here because --> 
    <%= map.size() %>
    

    theoretically the following should work, but i never used it this way.

    <%= map.size() // map.size here because %>
    
    0 讨论(0)
提交回复
热议问题