6. JSP comment tag jsp


JSP Expression Tag :Previous                                                                          Next: JSP Directives

JSP comment tag

JSP comment tag is used to marks jsp code as comment i.e. the code inside comment tag will be ignored by web container.
Syntax: <%– JSP comment –%>

Example:

welcome.jsp
<html>
 <head>
  <title>Comment tag example</title>
 </head>
 <body>
  This is Comment tag example. 
                Next line is commented so will not be visible.
  
 </body>
</html>
web.xml
<web-app>
 
  <welcome-file-list>
          <welcome-file>welcome.jsp</welcome-file>
  </welcome-file-list> 
 
</web-app>

Output:

JSP Expression Tag :Previous                                                                                  Next: JSP Directives