Prentice Hall and Sun Microsystems. Personal use only; do not redistribute.
260
Chapter 11 The JSP page Directive: Structuring Generated Servlets
Servers can use a larger buffer than you specify, but not a smaller one. For
example,
<%@ page buffer="32kb" %>
means the document content
should be buffered and not sent to the client until at least 32 kilobytes have
been accumulated or the page is completed. The default buffer size is server
specific, but must be at least 8 kilobytes. Be cautious about turning off buff
ering; doing so requires JSP entries that set headers or status codes to appear
at the top of the file, before any HTML content.
11.6 The autoflush Attribute
The
autoflush
attribute controls whether the output buffer should be auto
matically flushed when it is full or whether an exception should be raised
when the buffer overflows. Use of this attribute takes one of the following
two forms:
<%@ page autoflush="true" %> <% Default %>
<%@ page autoflush="false" %>
A value of
false
is illegal when also using
buffer="none"
.
11.7 The extends Attribute
The
extends
attribute indicates the superclass of the servlet that will be gen
erated for the JSP page and takes the following form:
<%@ page extends="package.class" %>
Use this attribute with extreme caution since the server may be using a
custom superclass already.
11.8 The info Attribute
The
info
attribute defines a string that can be retrieved from the servlet by
means of the
getServletInfo
method. Use of
info
takes the following
form:
<%@ page info="Some Message" %>
Second edition of this book: www.coreservlets.com; Sequel: www.moreservlets.com.
Servlet and JSP training courses by book's author: courses.coreservlets.com.
footer
Our partners:
PHP: Hypertext Preprocessor Best Web Hosting
Java Web Hosting
Jsp Web Hosting
Cheapest Web Hosting
Visionwebhosting.net Business web hosting division of Web
Design Plus. All rights reserved