This attribute is used to define the buffer size.
Syntax:
<
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> |
Output:
Download this example.
Next Topic: autoFlush attribute in JSP page directive with example.
Previous Topic: Session attribute of JSP page directive with example.