JSP info attribute

The JSP info attribute is used to provide the JSP page description.

Syntax:

<%@ page info="value"%>

Example:

welcome.jsp

<%@ page info="w3schools360" %>   
 
<html>
    <head>
        <title>info page directive example</title>
    </head>
    <body>
        <h3>Hello this is an info page directive example.</h3>
    </body>
</html>

 

web.xml

<web-app>
 
  <welcome-file-list>
          <welcome-file>welcome.jsp</welcome-file>
  </welcome-file-list>	
 
</web-app>