JSP Buffer attribute

JSP Buffer attribute is used to define the buffer size.

Syntax:

<%@ page buffer="value"%>

Example:

welcome.jsp

<%@ page buffer="32kb" %>  
 
<html>
    <head>
        <title>buffer page directive example</title>
    </head>
    <body> 
        <h3>Hello this is a buffer page directive example.</h3>
    </body>
</html>

 

web.xml

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