Documents the JSP page but is not inserted into the response.
<%--
comment
--%>
<%@ page language="java" %> <html> <head><title>A Comment Test</title></head> <body> <h2>A Test of Comments</h2> <%-- This comment will not be inclueded in the response --%> </body> </html>
A hidden comment marks text or lines that the JSP container should ignore. A hidden comment is useful when you want to comment out part of your JSP page. The JSP container does not process anything within the <%--
and --%>
characters. A hidden comment is not inserted into the response.