How comment a JSP expression?

后端 未结 7 2264
栀梦
栀梦 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() %>
    

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

    <%= map.size() // map.size here because %>
    

提交回复
热议问题