jsp

Comments in JSP Page

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:

  • Create a jsp page that begins with the <%code fragment%> scriptlet. It can contain any number of JAVA language statements, variable or method declarations, or expressions that are valid in the page scripting language.
  • Keep any html tags in the page outside the scriptlet.
  • Add JSP comment using the <%-- --%> tags.
  • Add HTML comments using the <!-- --> tags.
  • You can add scriptlet code inside the comments, as shown below:

Comments.jsp

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

<html>

<head>
	<title>Java Code Geeks Snippets - Comments in JSP Page</title>
</head>

<body>

	<%-- This is a JSP comment --%>
	
	<!-- This is an HTML comment -->
	
	<!-- Current date is <%= new Date() %> -->

</body>

URL:

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

HTML Output:

<html>

<head>
	<title>Java Code Geeks Snippets - Comments in JSP Page</title>
</head>

<body>

	
	
	<!-- This is an HTML comment -->
	
	<!-- Current date is Thu Nov 17 21:36:25 EET 2011 -->

</body>

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

Ilias Tsagklis

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

4 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
java
5 years ago

1.Frist You have to create jsp webpage satrting with
2.keep any html tag in the page but out the scriplet.
3.add jsp comment in tag
4.add html comment in tag

Mantriix
4 years ago

Amazing Work. Worth Sharing.

caviar
4 years ago

What is a JUnIt?

neha sharma
11 months ago

Thank you so much for sharing this valuable knowledge with us.
https://nehasharma28808.blogspot.com/

Back to top button