

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is autoFlush attribute in JSP?
The autoFlush attribute specifies whether the buffered output should be flushed automatically when the buffer is filled, or whether an exception should be raised to indicate the buffer overflow.
A value of true (default) indicates automatic buffer flushing and a value of false throws an exception.
The following directive causes the servlet to throw an exception when the servlet's output buffer is full −
<%@ page autoFlush = "false" %>
This directive causes the servlet to flush the output buffer when full −
<%@ page autoFlush = "true" %>
Usually, the buffer and the autoFlush attributes are coded on a single page directive as follows −
<%@ page buffer = "16kb" autoflush = "true" %>
- Related Questions & Answers
- What is contentType attribute in JSP?
- What is errorPage attribute in JSP?
- What is isErrorPage attribute in JSP?
- What is extends attribute in JSP?
- What is import attribute in JSP?
- What is info attribute in JSP?
- What is isThreadSafe attribute in JSP?
- What is language attribute in JSP?
- What is session attribute in JSP?
- What is isELIgnored Attribute in JSP?
- What is isScriptingEnabled Attribute in JSP?
- What is a buffer attribute in JSP?
- What is JSP page redirection?
- What is an Attribute?
- What is Java Server Pages, JSP? Why JSP is preferred over CGI?
Advertisements