Reusing Content in JSP Pages


There are many mechanisms for reusing JSP content in a JSP page. Three mechanisms that can be categorized as direct reusethe include directive, preludes and codas, and the jsp:include elementare discussed here. An indirect method of content reuse occurs when a tag file is used to define a custom tag that is used by many web applications. Tag files are discussed in the section Encapsulating Reusable Content Using Tag Files (page 212) in Chapter 7.

The include directive is processed when the JSP page is translated into a servlet class. The effect of the directive is to insert the text contained in another fileeither static content or another JSP pageinto the including JSP page. You would probably use the include directive to include banner content, copyright information, or any chunk of content that you might want to reuse in another page. The syntax for the include directive is as follows:

   <%@ include file="filename" %>


For example, all the Duke's Bookstore application pages could include the file banner.jspf, which contains the banner content, by using the following directive:

   <%@ include file="banner.jspf" %>


Another way to do a static include is to use the prelude and coda mechanisms described in Defining Implicit Includes (page 152). This is the approach used by the Duke's Bookstore application.

Because you must put an include directive in each file that reuses the resource referenced by the directive, this approach has its limitations. Preludes and codas can be applied only to the beginnings and ends of pages. For a more flexible approach to building pages out of content chunks, see A Template Tag Library (page 253).

The jsp:include element is processed when a JSP page is executed. The include action allows you to include either a static or a dynamic resource in a JSP file. The results of including static and dynamic resources are quite different. If the resource is static, its content is inserted into the calling JSP file. If the resource is dynamic, the request is sent to the included resource, the included page is executed, and then the result is included in the response from the calling JSP page. The syntax for the jsp:include element is:

   <jsp:include page="includedPage" />


The hello1 application discussed in Packaging Web Modules (page 39) uses the following statement to include the page that generates the response:

   <jsp:include page="response.jsp"/>




The JavaT EE 5 Tutorial
The JavaT EE 5 Tutorial
ISBN: N/A
EAN: N/A
Year: 2004
Pages: 309

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net