The JSP syntax adds additional XML-like tags, called JSP actions, to be used to invoke built-in functionality. Additionally, the technology allows for the creation of JSP tag libraries that act as extensions to the standard HTML or XML tags. Tag libraries provide a platform independent way of extending the capabilities of a Web server. JSPs are compiled into Java Servlets by a JSP compiler. A JSP compiler may generate a servlet in Java code that is then compiled by the Java compiler, or it may generate byte code for the servlet directly.
"JavaServer Pages" is a technology released by Sun.
JSP and Servlets
Architecturally speaking, JSP can be viewed as a high-level abstraction of servlets that is implemented as an extension of the Servlet 2.1 API. Both servlets and JSPs were originally developed at Sun Microsystems, initially created by Anselm Baird-Smith and later elaborated on as a specification by Satish Dharmaraj. Starting with version 1.2 of the JSP specification, JavaServer Pages have been developed under the Java Community Process. JSR 53 defines both the JSP 1.2 and Servlet 2.3 specifications and JSR 152 defines the JSP 2.0 specification. As of May 2006 the JSP 2.1 specification has been released under JSR 245 as part of Java EE 5.
JSP Syntax
A JavaServer Page may be broken down into the following pieces:
* static data such as HTML,
* JSP directives such as the include directive,
* JSP scripting elements and variables,
* JSP actions,
* custom tags
Static data
Static data is written out to the HTTP response exactly as it appears in the input file. Thus a normal HTML page with no embedded java or actions would be valid JSP input. In that case, the same data would be sent in the response each and every time by the web server to the browser.
JSP directives
JSP directives control how the JSP compiler generates the servlet. The following directives are available:
* include – The include directive informs the JSP compiler to include a complete file into the current file. It is as if the contents of the included file were pasted directly into the original file. This functionality is similar to the one provided by the C preprocessor. Included files generally have the extension "jspf" (for JSP Fragment):
<%@ include file="somefile.jspf" %>
* page – There are several options to the page directive.
import results in a Java import statement being inserted into the resulting file
contentType specifies the content that is generated. This should be used if HTML is not used or if the character set is not the default character set.
errorPage indicates the page that will be shown if an exception occurs while processing the HTTP request.
isErrorPage if set to true, it indicates that this is the error page.
isThreadSafe indicates if the resulting servlet is thread safe.
<%@ page import="java.util.*" %> //example import
<%@ page contentType="text/html" %> //example contentType
<%@ page isErrorPage=false %> //example for non error page
<%@ page isThreadSafe=true %> //example for a thread safe JSP
Note: Only the "import" page directive can be used multiple times in the same JSP.
* taglib – The taglib directive indicates that a JSP tag library is to be used. The directive requires that a prefix be specified (much like a namespace in C++) and the URI for the tag library description.
<%@ taglib prefix="myprefix" uri="taglib/mytag.tld" %>
JSP scripting elements and objects
JSP Implicit Objects
The following JSP implicit objects are exposed by the JSP container and can be referenced by the programmer:
* out – The JSPWriter used to write the data to the response stream.
* page – The servlet itself.
* pageContext – A PageContext instance that contains data associated with the whole page. A given HTML page may be passed among multiple JSPs.
* request – The HTTP request object.
* response – The HTTP response object.
* session – The HTTP session object that can be used to track information about a user from one request to another.
* config – Provides servlet configuration data.
* application – Data shared by all JSPs and servlets in the application.
* exception – Exceptions not caught by application code.
Scripting elements
There are three basic kinds of scripting elements that allow java code to be inserted directly into the servlet.
* A declaration tag places a variable definition inside the body of the java servlet class. Static data members may be defined as well.
<%! int serverInstanceVariable = 1; %>
* A scriptlet tag places the contained statements inside the _jspService() method of the java servlet class.
<% int localStackBasedVariable = 1; out.println(localStackBasedVariable); %>
* An expression tag places an expression to be evaluated inside the java servlet class. Expressions should not be terminated with a semi-colon .
<%= "expanded inline data " + 1 %>
JSP actions
JSP actions are XML tags that invoke built-in web server functionality. The following actions are provided:
jsp:include Similar to a subroutine, the Java servlet temporarily hands the request and response off to the specified JavaServer Page. Control will then return to the current JSP, once the other JSP has finished. Using this, JSP code will be shared between multiple other JSPs, rather than duplicated.
jsp:param Can be used inside a jsp:include, jsp:forward or jsp:params block. Specifies a parameter that will be added to the request's current parameters.
jsp:forward Used to hand off the request and response to another JSP or servlet. Control will never return to the current JSP.
jsp:plugin Older versions of Netscape Navigator and Internet Explorer used different tags to embed an applet. This action generates the browser specific tag needed to include an applet.
jsp:fallback The content to show if the browser does not support applets.
jsp:getProperty Gets a property from the specified JavaBean.
jsp:setProperty Sets a property in the specified JavaBean.
jsp:useBean Creates or re-uses a JavaBean available to the JSP page.
Examples of tags
jsp:include
name:<%=request.getParameter("extraparam")%>
jsp:forward
In this forwarding example, the request is forwarded to "subpage.jsp". The request handling does not return to this page.
jsp:plugin
Your browser does not support applets.
The plugin example illustrates a uniform way of embedding applets in a web page. Before the advent of the
No comments:
Post a Comment