[7.i] Info attribute in JSP page directive

Info attribute in JSP page directive

This attribute is used to provide the JSP page description.
Syntax: <%@ page info=”value”%>

Example:

welcome.jsp
<%@ page info="javawithease" %>   
 
<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>

Output: