站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题JSP

JSP

摘要: JSP
. Syntax Summary <table border=1> <tr class=COLORED> <th>JSP Element <th>Syntax <th>Interpretation <th>Notes <tr> <td>JSP Expression <td>
<%= expression %>
<td>Expression is evaluated and placed in output. <td>XML equivalent is

expression
. Predefined variables are request, response, out, session, application, config, and pageContext (available in scriptlets also). <tr> <td>JSP Scriptlet <td>
<% code %>
<td>Code is inserted in service method. <td>XML equivalent is

code
. <tr> <td>JSP Declaration <td>
<%! code %>
<td>Code is inserted in body of servlet class, outside of service method. <td>XML equivalent is

code
. <tr> <td>JSP page Directive <td>
<%@ page att="val" %>
<td>Directions to the servlet engine about general setup. <td>XML equivalent is
. Legal attributes, with default values in bold, are: <tr> <td>JSP include Directive <td>
<%@ include file="url" %>
<td>A file on the local system to be included when the JSP page is translated into a servlet. <td>XML equivalent is
file="url"\>.
The URL must be a relative one. Use the jsp:include action to include a file at request time instead of translation time. <tr> <td>JSP Comment <td>
<%-- comment --%>
<td>Comment; ignored when JSP page is translated into servlet. <td>If you want a comment in the resultant HTML, use regular HTML comment syntax of <-- comment . <tr> <td>The jsp:include Action <td>
<td>Includes a file at the time the page is requested. <td>If you want to include the file at the time the page is translated, use the page directive with the include attribute instead. Warning: on some servers, the included file must be an HTML file or JSP file, as determined by the server (usually based on the file extension). <tr> <td>The jsp:useBean Action <td> or

...
<td>Find or build a Java Bean. <td>Possible attributes are: <tr> <td>The jsp:setProperty Action <td>
<td>Set bean properties, either explicitly or by designating that value comes from a request parameter. <td>Legal attributes are <tr> <td>The jsp:getProperty Action <td>
<td>Retrieve and output bean properties. <td> <tr> <td>The jsp:forward Action <td>
<td>Forwards request to another page. <td> <tr> <td>The jsp:plugin Action <td>


  ...

<td>Generates OBJECT or EMBED tags, as appropriate to the browser type, asking that an applet be run using the Java Plugin. <td> </td></tr></table>

3. Template Text: Static HTML

In many cases, a large percent of your JSP page just consists of static HTML, known as template text. In all respects except one, this HTML looks just like normal HTML, follows all the same syntax rules, and is simply "passed through" to the client by the servlet created to handle the page. Not only does the HTML look normal, it can be created by whatever tools you already are using for building Web pages. For example, I used Allaire's HomeSite for most of the JSP pages in this tutorial.

The one minor exception to the "template text is passed straight through" rule is that, if you want to have "<%" in the output, you need to put "<\%" in the template text.

4. JSP Scripting Elements

JSP scripting elements let you insert Java code into the servlet that will be generated from the current JSP page. There are three forms:
  1. Expressions of the form <%= expression %> that are evaluated and inserted into the output,
  2. Scriptlets of the form <% code %> that are inserted into the servlet's service method, and
  3. Declarations of the form <%! code %> that are inserted into the body of the servlet class, outside of any existing methods.
Each of these is described in more detail below.

4.1 JSP Expressions

A JSP expression is used to insert Java values directly into the output. It has the following form:
<%= Java Expression %>

The Java expression is evaluated, converted to a string, and inserted in the page. This evaluation is performed at run-time (when the page is requested), and thus has full access to information about the request. For example, the following shows the date/time that the page was requested:
Current time: <%= new java.util.Date() %>

To simplify these expressions, there are a number of predefined variables that you can use. These implicit objects are discussed in more detail later, but for the purpose of expressions, the most important ones are: Here's an example:
Your hostname: <%= request.getRemoteHost() %>

Finally, note that XML authors can use an alternative syntax for JSP expressions:


Java Expression



Remember that XML elements, unlike HTML ones, are case sensitive. So be sure to use lowercase.

4.2 JSP Scriptlets

If you want to do something more complex than insert a simple expression, JSP scriptlets let you insert arbitrary code into the servlet method that will be built to generate the page. Scriptlets have the following form:
<% Java Code %>

Scriptlets have access to the same automatically defined variables as expressions. So, for example, if you want output to appear in the resultant page, you would use the out variable.
<%

String queryData = request.getQueryString();

out.println("Attached GET data: " + queryData);

%>

Note that code inside a scriptlet gets inserted exactly as written, and any static HTML (template text) before or after a scriptlet gets converted to print statements. This means that scriptlets need not contain complete Java statements, and blocks left open can affect the static HTML outside of the scriptlets. For example, the following JSP fragment, containing mixed template text and scriptlets
<% if (Math.random() < 0.5) { %>

Have a nice day!

<% } else { %>

Have a lousy day!

<% } %>

will get converted to something like:
if (Math.random() < 0.5) {

  out.println("Have a nice day!");

} else {

  out.println("Have a lousy day!");

}

If you want to use the characters "%>" inside a scriptlet, enter "%\>" instead. Finally, note that the XML equivalent of <% Code %> is


Code



4.3 JSP Declarations

A JSP declaration lets you define methods or fields that get inserted into the main body of the servlet class (outside of the service method processing the request). It has the following form:
<%! Java Code %>

Since declarations do not generate any output, they are normally used in conjunction with JSP expressions or scriptlets. For example, here is a JSP fragment that prints out the number of times the current page has been requested since the server booted (or the servlet class was changed and reloaded):
<%! private int accessCount = 0; %>

Accesses to page since server reboot:

<%= ++accessCount %>

As with scriptlets, if you want to use the characters "%>", enter "%\>" instead. Finally, note that the XML equivalent of <%! Code %> is


Code



5. JSP Directives

A JSP directive affects the overall structure of the servlet class. It usually has the following form:
<%@ directive attribute="value" %>

However, you can also combine multiple attribute settings for a single directive, as follows:
<%@ directive attribute1="value1"

              attribute2="value2"

              ...

              attributeN="valueN" %>

There are two main types of directive: page, which lets you do things like import classes, customize the servlet superclass, and the like; and include, which lets you insert a file into the servlet class at the time the JSP file is translated into a servlet. The specification also mentions the taglib directive, which is not supported in JSP version 1.0, but is intended to let JSP authors define their own tags. It is expected that this will be the main new contribution of JSP 1.1.

5.1 The JSP page Directive

The page directive lets you define one or more of the following case-sensitive attributes: The XML syntax for defining directives is
directiveType attribute=value />

For example, the XML equivalent of
<%@ page import="java.util.*" %>
is

5.2 The JSP include Directive

This directive lets you include files at the time the JSP page is translated into a servlet. The directive looks like this:
<%@ include file="relative url" %>

The URL specified is normally interpreted relative to the JSP page that refers to it, but, as with relative URLs in general, you can tell the system to interpret the URL relative to the home directory of the Web server by starting the URL with a forward slash. The contents of the included file are parsed as regular JSP text, and thus can include static HTML, scripting elements, directives, and actions.

For example, many sites include a small navigation bar on each page. Due to problems with HTML frames, this is usually implemented by way of a small table across the top of the page or down the left-hand side, with the HTML repeated for each page in the site. The include directive is a natural way of doing this, saving the developers from the maintenance nightmare of actually copying the HTML into each separate file. Here's some representative code:

 HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">



<head>

Servlet Tutorial: JavaServer Pages (JSP) 1.0







<link> REL=STYLESHEET

      HREF="Site-Styles.css"

      TYPE="text/css">

</head>

<body>

<%@ include file="/navbar.html" %>

</body>



Note that since the include directive inserts the files at the time the page is translated, if the navigation bar changes, you need to re-translate all the JSP pages that refer to it. This is a good compromise in a situation like this, since the navigation bar probably changes infrequently, and you want the inclusion process to be as efficient as possible. If, however, the included files changed more often, you could use the jsp:include action instead. This includes the file at the time the JSP page is requested, and is discussed in the tutorial section on JSP actions.

6. Example Using Scripting Elements and Directives

Here is a simple example showing the use of JSP expressions, scriptlets, declarations, and directives. You can also download the source or try it on-line.
 HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">



<head>

Using JavaServer Pages







<link> REL=STYLESHEET

      HREF="My-Style-Sheet.css"

      TYPE="text/css">

</head>

<body BGCOLOR="#FDF5E6" TEXT="#000000" LINK="#0000EE"

      VLINK="#551A8B" ALINK="#FF0000">

<table BORDER=5 BGCOLOR="#EF8429"> <tr><th CLASS="TITLE"> Using JavaServer Pages</table>

Some dynamic content created using various JSP mechanisms:

  • Expression.
    Your hostname: <%= request.getRemoteHost() %>.
  • Scriptlet.
    <% out.println("Attached GET data: " + request.getQueryString()); %>
  • Declaration (plus expression).
    <%! private int accessCount = 0; %> Accesses to page since server reboot: <%= ++accessCount %>
  • Directive (plus expression).
    <%@ page import = "java.util.*" %> Current date: <%= new Date() %>
</body>
Here's a typical result:

7. Predefined Variables

To simplify code in JSP expressions and scriptlets, you are supplied with eight automatically defined variables, sometimes called implicit objects. The available variables are request, response, out, session, application, config, pageContext, and page. Details for each are given below.

7.1 request

This is the HttpServletRequest associated with the request, and lets you look at the request parameters (via getParameter), the request type (GET, POST, HEAD, etc.), and the incoming HTTP headers (cookies, Referer, etc.). Strictly speaking, request is allowed to be a subclass of ServletRequest other than HttpServletRequest, if the protocol in the request is something other than HTTP. This is almost never done in practice.

7.2 response

This is the HttpServletResponse associated with the response to the client. Note that, since the output stream (see out below) is buffered, it is legal to set HTTP status codes and response headers, even though this is not permitted in regular servlets once any output has been sent to the client.

7.3 out

This is the PrintWriter used to send output to the client. However, in order to make the response object (see the previous section) useful, this is a buffered version of PrintWriter called JspWriter. Note that you can adjust the buffer size, or even turn buffering off, through use of the buffer attribute of the page directive. This was discussed in Section 5. Also note that out is used almost exclusively in scriptlets, since JSP expressions automatically get placed in the output stream, and thus rarely need to refer to out explicitly.

7.4 session

This is the HttpSession object associated with the request. Recall that sessions are created automatically, so this variable is bound even if there was no incoming session reference. The one exception is if you use the session attribute of the page directive (see Section 5) to turn sessions off, in which case attempts to reference the session variable cause errors at the time the JSP page is translated into a servlet.

7.5 application

This is the ServletContext as obtained via getServletConfig().getContext().

7.6 config

This is the ServletConfig object for this page.

7.7 pageContext

JSP introduced a new class called PageContext to encapsulate use of server-specific features like higher performance JspWriters. The idea is that, if you access them through this class rather than directly, your code will still run on "regular" servlet/JSP engines.

7.8 page

This is simply a synonym for this, and is not very useful in Java. It was created as a placeholder for the time when the scripting language could be something other than Java.

8. Actions

JSP actions use constructs in XML syntax to control the behavior of the servlet engine. You can dynamically insert a file, reuse JavaBeans components, forward the user to another page, or generate HTML for the Java plugin. Available actions include: These actions are described in more detail below. Remember that, as with XML in general, the element and attribute names are case sensitive.

8.1 The jsp:include Action

This action lets you insert files into the page being generated. The syntax looks like this:


Unlike the include directive, which inserts the file at the time the JSP page is translated into a servlet, this action inserts the file at the time the page is requested. This pays a small penalty in efficiency, and precludes the included page from containing general JSP code (it cannot set HTTP headers, for example), but it gains significantly in flexibility. For example, here is a JSP page that inserts four different snippets into a "What's New?" Web page. Each time the headlines change, authors only need to update the four files, but can leave the main JSP page unchanged.

WhatsNew.jsp

You can also download the source or try it on-line.
 HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">



<head>

What's New

<link> REL=STYLESHEET

      HREF="My-Style-Sheet.css"

      TYPE="text/css">

</head>

<body BGCOLOR="#FDF5E6" TEXT="#000000" LINK="#0000EE"

      VLINK="#551A8B" ALINK="#FF0000">

<table BORDER=5 BGCOLOR="#EF8429"> <tr><th CLASS="TITLE"> What's New at JspNews.com</table>

Here is a summary of our four most recent news stories:

</body>
Here's a typical result:

8.2 The jsp:useBean Action

This action lets you load in a JavaBean to be used in the JSP page. This is a a very useful capability because it lets you exploit the reusability of Java classes without sacrificing the convenience that JSP adds over servlets alone. The simplest syntax for specifying that a bean should be used is:


This usually means "instantiate an object of the class specified by class, and bind it to a variable with the name specified by id." However, as we'll see shortly, you can specify a scope attribute that makes the bean associated with more than just the current page. In that case, it is useful to obtain references to existing beans, and the jsp:useBean action specifies that a new object is instantiated only if there is no existing one with the same id and scope. Now, once you have a bean, you can modify its properties via jsp:setProperty, or by using a scriptlet and calling a method explicitly on the object with the variable name specified earlier via the id attribute. Recall that with beans, when you say "this bean has a property of typeX called foo", you really mean "this class has a method called getFoo that returns something of type X, and another method called setFoo that takes an X as an argument." The jsp:setProperty action is discussed in more detail in the next section, but for now note that you can either supply an explicit value, give a param attribute to say that the value is derived from the named request parameter, or just list the property to indicate that the value should be derived from the request parameter with the same name as the property. You read existing properties in a JSP expression or scriptlet by calling the appropriate getXxx method, or more commonly, by using the jsp:getProperty action.

Note that the class specified for the bean must be in the server's regular class path, not the part reserved for classes that get automatically reloaded when they change. For example, in the Java Web Server, it and all the classes it uses should go in the classes directory or be in a jar file in the lib directory, not be in the servlets directory.

Here is a very simple example that loads a bean and sets/gets a simple String parameter.

BeanTest.jsp

You can also download the source or try it on-line.
 HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">



<head>

Reusing JavaBeans in JSP

<link> REL=STYLESHEET

      HREF="My-Style-Sheet.css"

      TYPE="text/css">

</head>

<body>

<table BORDER=5> <tr><th CLASS="TITLE"> Reusing JavaBeans in JSP</table>

Message:

</body>

SimpleBean.java

Here's the source code for the bean used in the BeanTest JSP page. You can also download the source.
package hall;

public class SimpleBean {

  private String message = "No message specified";

  public String getMessage() {

    return(message);

  }

  public void setMessage(String message) {

    this.message = message;

  }

}

Here's a typical result:

8.3 More jsp:useBean Details

The simplest way to use a bean is to use

to load the bean, then use jsp:setProperty and jsp:getProperty to modify and retrieve bean properties. However, there are two other options. First, you can use the container format, namely

Body

to indicate that the Body portion should be executed only when the bean is first instantiated, not when an existing bean is found and used. As discussed below, beans can be shared, so not all jsp:useBean statements result in a new bean being instantiated. Second, in addition to id and class, there are three other attributes that you can use: scope, type, and beanName. These attributes are summarized in the following table.

<table border=1> <tr class=COLORED> <th>Atribute <th>Usage <tr> <td>id <td>Gives a name to the variable that will reference the bean. A previous bean object is used instead of instantiating a new one if one can be found with the same id and scope. <tr> <td>class <td>Designates the full package name of the bean. <tr> <td>scope <td>Indicates the context in which the bean should be made available. There are four possible values: page, request, session, and application. The default, page, indicates that the bean is only available on the current page (stored in the PageContext of the current page). A value of request indicates that the bean is only available for the current client request (stored in the ServletRequest object). A value of session indicates that the object is available to all pages during the life of the current HttpSession. Finally, a value of application indicates that it is available to all pages that share the same ServletContext. The reason that the scope matters is that a jsp:useBean entry will only result in a new object being instantiated if there is no previous object with the same id and scope. Otherwise the previously existing object is used, and any jsp:setParameter elements or other entries between the jsp:useBean start and end tags will be ignored. <tr> <td>type <td>Specifies the type of the variable that will refer to the object. This must match the classname or be a superclass or an interface that the class implements. Remember that the name of the variable is designated via the id attribute. <tr> <td>beanName <td>Gives the name of the bean, as you would supply it to the instantiate method of Beans. It is permissible to supply a type and a beanName, and omit the class attribute. </td></tr></table>

8.4 The jsp:setProperty Action

You use jsp:setProperty to give values to properties of beans that have been referenced earlier. You can do this in two contexts. First, you can use jsp:setProperty after, but outside of, a jsp:useBean element, as below:


...



In this case, the jsp:setProperty is executed regardless of whether a new bean was instantiated or an existing bean was found. A second context in which jsp:setProperty can appear is inside the body of a jsp:useBean element, as below:


  ...

  



Here, the jsp:setProperty is executed only if a new object was instantiated, not if an existing one was found.

There are four possible attributes of jsp:setProperty:

<table border=1> <tr class=COLORED> <th>Attribute <th>Usage <tr> <td>name <td>This required attribute designates the bean whose property will be set. The jsp:useBean element must appear before the jsp:setProperty element. <tr> <td>property <td>This required attribute indicates the property you want to set. However, there is one special case: a value of "*" means that all request parameters whose names match bean property names will be passed to the appropriate setter methods. <tr> <td>value <td>This optional attribute specifies the value for the property. String values are automatically converted to numbers, boolean, Boolean, byte, Byte, char, and Character via the standard valueOf method in the target or wrapper class. For example, a value of "true" for a boolean or Boolean property will be converted via Boolean.valueOf, and a value of "42" for an int or Integer property will be converted via Integer.valueOf. You can't use both value and param, but it is permissible to use neither. See the discussion of param below. <tr> <td>param <td>This optional attribute designates the request parameter from which the property should be derived. If the current request has no such parameter, nothing is done: the system does not pass null to the setter method of the property. Thus, you can let the bean itself supply default values, overriding them only when the request parameters say to do so. For example, the following snippet says "set the numberOfItems property to whatever the value of the numItems request parameter is, if there is such a request parameter. Otherwise don't do anything."

If you omit both value and param, it is the same as if you supplied a param name that matches the property name. You can take this idea of automatically using the request property whose name matches the property one step further by supplying a property name of "*" and omitting both value and param. In this case, the server iterates through available properties and request parameters, matching up ones with identical names. </td></tr></table>Here's an example that uses a bean to create a table of prime numbers. If there is a parameter named numDigits in the request data, it is passed into the bean's numDigits property. Likewise for numPrimes.

JspPrimes.jsp

To download the JSP source, right click on the source code link. You can also download the source code for the NumberedPrimes bean referenced by the jsp:useBean element. Browse the source code directory for other Java classes used by NumberedPrimes. The best way to try it out on-line is to start with the HTML page that acts as a front end to it.
 HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">



<head>

Reusing JavaBeans in JSP

<link> REL=STYLESHEET

      HREF="My-Style-Sheet.css"

      TYPE="text/css">

</head>

<body>

<table BORDER=5> <tr><th CLASS="TITLE"> Reusing JavaBeans in JSP</table>

Some digit primes: </body>

Here's a typical result:

8.5 The jsp:getProperty Action

This element retrieves the value of a bean property, converts it to a string, and inserts it into the output. The two required attributes are name, the name of a bean previously referenced via jsp:useBean, and property, the property whose value should be inserted. Here's an example; for more examples, see Sections 8.2 and 8.4.


...

  • Number of items:
  • Cost of each:

8.6 The jsp:forward Action

This action lets you forward the request to another page. It has a single attribute, page, which should consist of a relative URL. This could be a static value, or could be computed at request time, as in the two examples below.




8.7 The jsp:plugin Action

This action lets you insert the browser-specific OBJECT or EMBED element needed to specify that the browser run an applet using the Java plugin.

9. Comments and Character Quoting Conventions

There are a small number of special constructs you can use in various cases to insert comments or characters that would otherwise be treated specially. Here's a summary: <table border=1> <tr class=COLORED> <th>Syntax <th>Purpose <tr> <td>
<%-- comment --%>
<td>A JSP comment. Ignored by JSP-to-scriptlet translator. Any embedded JSP scripting elements, directives, or actions are ignored. <tr> <td>

<td>An HTML comment. Passed through to resultant HTML. Any embedded JSP scripting elements, directives, or actions are executed normally.

<tr>

<td>
<\%
<td>Used in template text (static HTML) where you really want "<%". <tr> <td>
%\>
<td>Used in scripting elements where you really want "%>". <tr> <td>
\'
<td>A single quote in an attribute that uses single quotes. Remember, however, that you can use either single or double quotes, and the other type of quote will then be a regular character. <tr> <td>
\"
<td>A double quote in an attribute that uses double quotes. Remember, however, that you can use either single or double quotes, and the other type of quote will then be a regular character. <tr> <td>
%\>
<td>%> in an attribute. <tr> <td>
<\%
<td><% in an attribute. </td></tr></table>




↑返回目录
前一篇: XML与JSP
后一篇: JSP标签库介绍(1)什么是标签库?