We know that JSP(Java Server Pages) is a server-side technology used to develop dynamic web application.
We can add comment in JSP application using <%-- --%> tag.
<html>
<body>
<%
<%--This is a JSP Comment--%>
<!—This is an HTML Comment- - >
out.print(“Welcome 2 SILAN Technology powered by java8s.com”);
%>
</body>
</html>