Oracle JavaServer Pages Developer's Guide and Reference Release 8.1.7 Part Number A83726-01 |
|
OracleJSP release 1.1.0.0.0, which fully supports the JSP 1.1 specification, is provided with Oracle8i release 8.1.7. In this document, "OracleJSP release 8.1.7" is synonymous with "OracleJSP release 1.1.0.0.0".
Some other Oracle platforms supporting OracleJSP have not yet incorporated the latest OracleJSP release, however--they integrate OracleJSP release 1.0.0.6.1 or 1.0.0.6.0, which were JSP 1.0 implementations.
Table 2-1 summarizes which OracleJSP releases are provided with which Oracle platform releases as of this writing.
The "OracleJSP Feature Notes" column refers to OracleJSP release 1.1.0.0.0 features documented in this document that are limited in the OracleJSP release noted for the particular Oracle platform, or have special significance for the platform. For more information, see "OracleJSP Feature Notes for Release 1.0.0.6.x".
It is possible to download, incorporate, and use more recent OracleJSP versions with the above Oracle platforms; the OracleJSP versions documented are the versions that are supplied as part of the product.
To verify the OracleJSP release being used in a particular environment, retrieve the release number from the implicit application
object in a JSP page, as follows:
<%= application.getAttribute("oracle.jsp.versionNumber") %>
The following points describe the significance of the "OracleJSP Feature Notes" column in Table 2-1 above, regarding OracleJSP release 1.0.0.6.x.
globals.jsa
mechanism to support a more complete application framework. See "OracleJSP Application and Session Support for Servlet 2.0" for more information.
Use of JML in OracleJSP release 1.0.0.6.x requires a taglib
directive (as specified for JSP 1.1 and supported by OracleJSP 1.1.0.0.0), but the directive must specify the class that contains the library, as follows:
<%@ taglib uri="oracle.jsp.parse.OpenJspRegisterLib" prefix="jml" %>
By contrast, when using a JSP implementation that complies with the JSP 1.1 specification, such as OracleJSP 1.1.0.0.0, the taglib
directive specifies the tag library description file (in a .tld
file or .jar
file), as follows:
<%@ taglib uri="/WEB-INF/tlds/jmltags.tld" prefix="jml" %>
For information about the JML compile-time implementation, see Appendix C, "Compile-Time JML Tag Support".
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|