autoFlush attribute in JSP page directive

This attribute is used to control the behaviour of the buffer. Buffer will be flushed automatically when full if autoFlush is true otherwise throw an exception.

Syntax:

<

Example:

welcome.jsp

<%@ page autoFlush="true" %> 
 
<html>
	<head>
		<title>autoFlush page directive example</title>
	</head>
	<body> 
		<h3>Hello this is a autoFlush 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:

jsp example 9   Download this example.   Next Topic: contentType attribute in JSP page directive with example. Previous Topic: buffer attribute in JSP page directive with example.

 

Please follow and like us:
Content Protection by DMCA.com