Comments in JSP Page (original) (raw)

In this example we shall show you how to add comments in a JSP page. JavaServer Pages (JSP) is a server-side programming technology that enables the creation of dynamic, platform-independent method for building Web-based applications. JSP have access to the entire family of Java APIs, including the JDBC API to access enterprise databases. To add comments in a JSP page one should perform the following steps:

Comments.jsp

<%@ page language="java" contentType="text/html;charset=UTF-8" %> <%@ page import="java.util.Date"%>

Java Code Geeks Snippets - Comments in JSP Page
<%-- This is a JSP comment --%>

<!-- This is an HTML comment -->

<!-- Current date is <%= new Date() %> -->

URL:

http://myhost:8080/jcgsnippets/Comments.jsp

HTML Output:

`

Java Code Geeks Snippets - Comments in JSP Page
<!-- This is an HTML comment -->

<!-- Current date is Thu Nov 17 21:36:25 EET 2011 -->
`

This was an example of how to add comments in a JSP page.

Photo of Ilias Tsagklis

Ilias is a software developer turned online entrepreneur. He is co-founder and Executive Editor at Java Code Geeks.

Back to top button