|
Home TOC |
|
Including Content in a JSP Page
There are two mechanisms for including another Web resource in a JSP page: the
includedirective and thejsp:includeelement.The
includedirective is processed when the JSP page is translated into a servlet class. The effect of the directive to the insert the text contained in another file, either static content or another JSP page, in the including JSP page. You would probably use theincludedirective to include banner content, copyright information, or any chunk of content that you might want to reuse in another page. The syntax for theincludedirective is:<%@ include file="filename" %>For example, all the bookstore application pages include the file
banner.jspcontaining the banner content with the following directive:<%@ include file="banner.jsp" %>In addition, the pages
bookstore.jsp,bookdetails.jsp,catalog.jsp, andshowcart.jspinclude JSP elements that create and destroy a database bean with the element:<%@ include file="initdestroy.jsp" %>Because you must statically put an
includedirective in each file that reuses the resource referenced by the directive, this approach has its limitations. For a more flexible approach to building pages out of content chunks, see A Template Tag Library (page 489).The
jsp:includeelement is processed when a JSP page is executed. Theincludeaction allows you to include either a static or 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 thejsp:includeelement is:<jsp:include page="includedPage" />The
dateapplication introduced at the beginning of this chapter includes the page that generates the display of the localized date with the following statement:<jsp:include page="date.jsp"/>
|
Home TOC |
|