Variables
Resin 3.0

Features
Installation
Configuration
Web Applications
IOC/AOP
Resources
JSP
Quercus
Servlets and Filters
Databases
Admin (JMX)
CMP
EJB
Amber
EJB 3.0
Security
XML and XSLT
XTP
JMS
Performance
Protocols
Third-party
Troubleshooting/FAQ

Introduction
JSP Compilation
Reference
Tutorials
Articles
FAQ

JSP EL
JSTL
Directives
Variables
Actions
Applications
Velocity
Schema for JSP-2.0 .tld files
Directives
Reference
Actions

JSP makes implicit variables available to the script. These variables are used to gain information about the request, and to help form a response. They also expose some useful functionality.

  1. Index
  2. JSP Variables

    Index
    applicationThe current application
    exceptionFor error pages, the exception thrown from the broken page
    outThe buffered stream to the HTTP response
    pageThe current servlet
    pageContextState for the current page
    requestContains the request object
    responseContains the response object
    sessionThe current session

    JSP Variables

    request

    Contains the request object.

    response

    Contains the response object.

    pageContext

    State for the current page.

    session

    The current session. session is available only when the session directive is true.

    application

    The current application.

    out

    The buffered stream to the HTTP response.

    page

    The current servlet.

    exception

    For error pages, the exception thrown from the broken page.


    Directives
    Reference
    Actions
    Copyright © 1998-2006 Caucho Technology, Inc. All rights reserved.
    Resin® is a registered trademark, and HardCoretm and Quercustm are trademarks of Caucho Technology, Inc.