Java Stream 1 Unit 10 – Java Server Pages Introduction A First JavaServer Page Example Implicit Objects Scripting Standard Actions Directives Custom Tag.

Slides:



Advertisements
Similar presentations
8 Copyright © 2005, Oracle. All rights reserved. Creating the Web Tier: JavaServer Pages.
Advertisements

CS4273: Distributed System Technologies and Programming I Lecture 11: JavaServer Pages (JSP)
 2002 Prentice Hall. All rights reserved. Chapter 9: Servlets Outline 9.1 Introduction 9.2 Servlet Overview and Architecture Interface Servlet and.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 24: Servlets Outline 24.1 Introduction 24.2 Servlet Overview and Architecture Interface.
 Copyright Wipro Technologies JSP Ver 1.0 Page 1 Talent Transformation Java Server Pages.
Michael Brockway Application Integration JavaServer Pages l Introduction & Overview l Implicit Objects l Scripting l Standard Actions l Directives l References.
Chapter 51 Scripting With JSP Elements JavaServer Pages By Xue Bai.
Chapter 25: JavaServer Pages Outline 25.1 Introduction 25.2 JavaServer Pages Overview 25.3 First JavaServer Page Example 25.4 Implicit Objects 25.5 Scripting.
18-Jun-15 JSP Java Server Pages Reference: Tutorial/Servlet-Tutorial-JSP.html.
Generate Dynamic Content On Cache Server Master’s Project Proposal by Aparna Yeddula.
Pertemuan 10 Pemrograman JSP Matakuliah: T0053/Web Programming Tahun: 2006 Versi: 2.
JSP Architecture  JSP is a simple text file consisting of HTML or XML content along with JSP elements  JSP packages define the interface for the compiled.
 2004 Prentice Hall, Inc. All rights reserved. Chapter 37 - JavaServer Pages (JSP): Bonus for Java Developers Outline 37.1 Introduction 37.2 JavaServer.
DAT602 Database Application Development Lecture 15 Java Server Pages Part 1.
11. Java-Based Web: JSP, JSF. 2 Motto: Rule 1: Our client is always right Rule 2: If you think our client is wrong, see Rule 1. - Anonymous.
 2002 Prentice Hall. All rights reserved. JavaServer Pages.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 25: JavaServer Pages Outline 25.1 Introduction 25.2 JavaServer Pages Overview 25.3 First JavaServer.
Java Server Pages CS-422. What are JSPs A logical evolution of java servlets –most servlets dynamically create HTML and integrate it with some computational.
Chapter 16 The World Wide Web Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Describe several.
Using JavaBeans and Custom Tags in JSP Lesson 3B / Slide 1 of 37 J2EE Web Components Pre-assessment Questions 1.The _____________ attribute of a JSP page.
Java support for WWW Babak Esfandiari (sources: Qusay Mahmoud, Roger Impey, textbook)
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 30 – Bookstore Application: Client Tier Introducing.
Li Tak Sing COMPS311F. Static attributes in Servlets Since Servlets are also Java classes, you can also use static attributes to store values that can.
Introduction to Java Server Pages (JSPs) Robert Thornton.
 2003 Prentice Hall, Inc. All rights reserved. 1 Chapter 25: JavaServer Pages Outline 25.1 Introduction 25.2 JavaServer Pages Overview 25.3 First JavaServer.
 2001 Prentice Hall, Inc. All rights reserved. 1 Chapter 31 - JavaServer Pages (JSP): Bonus for Java™ Developers Outline 31.1 Introduction 31.2 JavaServer.
Chapter 7 Java Server Pages. Objectives Explain how the separation of concerns principle applies to JSP Describe the operation and life-cycle of a JSP.
Introduction to JavaServer Pages (JSP) Slides from Dr. Mark Llewellyn.
Java Server Pages Lecture July Java Server Pages Java Server Pages (JSPs) provide a way to separate the generation of dynamic content (java)
 Embeds Java code  In HTML tags  When used well  Simple way to generate dynamic web-pages  When misused (complex embedded Java)  Terribly messy.
JAVA SERVER PAGES CREATING DYNAMIC WEB PAGES USING JAVA James Faeldon CS 119 Enterprise Systems Programming.
Java Servlets Outline 24.1 Introduction 24.2 Servlet Overview and Architecture Interface Servlet and the Servlet Life Cycle HttpServlet Class.
1 JSP with Custom Tags Blake Adams Introduction Advanced Java Server Pages – Custom Tags Keyterms: - Tag Library Descriptor(TLD) - Tag Libraries.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 32.1 Reviewing the Bookstore Application 32.2.
intro JSP Pertemuan 8 Matakuliah: Web Programming Tahun: 2009.
 2005 Pearson Education, Inc. All rights reserved JavaServer Pages (JSP)
JSP Fundamentals Elements of a JSP Using Beans with JSP Integrating Servlets and JSP.
CSC 2720 Building Web Applications JavaServer Pages (JSP) The Basics.
Java server pages. A JSP file basically contains HTML, but with embedded JSP tags with snippets of Java code inside them. A JSP file basically contains.
Copyright © 2002 ProsoftTraining. All rights reserved. JavaServer Pages.
Java Server Pages (JSP)
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 31.1 Reviewing the Bookstore Application 31.2.
CSC 2720 Building Web Applications JavaServer Pages (JSP) JSP Directives and Action Elements.
 2003 Prentice Hall, Inc. All rights reserved. 1 Chapter 25: JavaServer Pages Outline 25.1 Introduction 25.2 JavaServer Pages Overview 25.3 First JavaServer.
JSP Pages. What and Why of JSP? JSP = Java code imbedded in HTML or XML –Static portion of the page is HTML –Dynamic portion is Java Easy way to develop.
JSP. Types of JSP Scripting Elements Expressions of the form, which are evaluated and inserted into the servlet's output. Scriptlets of the form, which.
 2002 Prentice Hall. All rights reserved. 9.8 Multi-Tier Applications: Using JDBC from a Servlet Three-tier distributed applications –User interface –Business.
JSP BASICS AND ARCHITECTURE. Goals of JSP Simplify Creation of dynamic pages. Separate Dynamic and Static content.
CS562 Advanced Java and Internet Application Introduction to the Computer Warehouse Web Application. Java Server Pages (JSP) Technology. By Team Alpha.
© FPT SOFTWARE – TRAINING MATERIAL – Internal use 04e-BM/NS/HDCV/FSOFT v2/3 JSP Application Models.
Basic JSP Celsina Bignoli Problems with Servlets Servlets contain –request processing, –business logic –response generation all lumped.
COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 3 1COMP9321, 15s2, Week.
 2002 Prentice Hall. All rights reserved. Chapter 10: JavaServer Pages Outline 10.1 Introduction 10.2 JavaServer Pages Overview 10.3 A First JavaServer.
Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All rights reserved. 1 Chapter 43 JavaServer Page.
1 Java Server Pages A Java Server Page is a file consisting of HTML or XML markup into which special tags and code blocks are inserted When the page is.
Chapter 6 Chapter 6 Server Side Programming (JSP) Part 1 1 (IS 203) WebProgramming (IS 203) Web Programming.
JSP JavaServer Pages. What is JSP? Java based technology that simplifies the development of dynamic web sites JSP pages are HTML pages with embedded code.
Java Programming: Advanced Topics 1 Building Web Applications Chapter 13.
Java Server Pages. 2 Servlets The purpose of a servlet is to create a Web page in response to a client request Servlets are written in Java, with a little.
10 Copyright © 2004, Oracle. All rights reserved. Building ADF View Components.
 2002 Prentice Hall. All rights reserved. Chapter 10: JavaServer Pages Outline 10.1 Introduction 10.2 JavaServer Pages Overview 10.3 A First JavaServer.
World Wide Web has been created to share the text document across the world. In static web pages the requesting user has no ability to interact with the.
Pre-assessment Questions
JavaServer Pages (JSP)
MSIS 655 Advanced Business Applications Programming
Java Server Pages.
Chapter 31 - JavaServer Pages (JSP): Bonus for Java™ Developers
COP 4610L: Applications in the Enterprise Spring 2005
COP 4610L: Applications in the Enterprise Spring 2005
Introduction to JSP Dept. of B.Voc Software Development and System Administration St. Joseph’s College(Autonomous) Trichy-02 By Dr. J. Ronald Martin Introduction.
Presentation transcript:

Java Stream 1 Unit 10 – Java Server Pages Introduction A First JavaServer Page Example Implicit Objects Scripting Standard Actions Directives Custom Tag Libraries

Java Stream 2 JSP Introduction As an extension of Servlet technology, JSPs are essential an HTML page with special JSP tags embedded. These JSP tags can contain Java code. The JSP file extension is.jsp rather than.html or.html Steps required for a JSP request: 1.The user goes to web side made using JSP. The web browser makes the request via the Internet. 2.The JSP request gets sent to the Web server. 3.The Web server recognizes that the file required is special (.jsp), therefore passes the JSP file to the JSP servlet engine 4.If the JSP file has been called the first time, the JSP file is parsed, otherwise goto step 7. 5.The next step is to generate a special Servlet from the JSP file. All the HTML required is converted to println statements. 6.The Servlet source code is compiled into a class. 7.The servlet is instantiated, calling the init and service methods. 8.HTML from the Servlet output is sent via the Internet. 9.HTML results are displayed on the user's web browser.

Java Stream 3 JSP Introduction (cont.) Servlets –Used when small amount of content is fixed-template data Most content generated dynamically –Some servlets do not produce content: invoke other servlets and JSPs JSPs –Look like standard HTML or XHTML Normally include HTML or XHTML markup –Known as fixed-template data –Used when content is mostly fixed-template data Small amounts of content generated dynamically –Use special tags (JSP tags) to include existing Java components OR codes: declaration, expression, directive, scriptlet, action, custom tag library

Java Stream 4 JSP Introduction (cont.) Declaration tag ( ) –Allow the developer to declare variables or methods –For Example <%! private int counter = 0; private String getAccount(int accountNo); %> Expression tag ( ) –Allow the developer to embed any Java expression and is short for out.println() –For Example

Java Stream 5 JSP Introduction (cont.) Directive ( –Give special information about the page to the JSP container –Enable programmers to specify: Page settings (page directive) Content to include from other resources (Include directive) Tag libraries to be used in the page (Tag library) Action ( –Predefined JSP tags that encapsulate functionality –Often performed based on information from client request –Can be used to create Java objects for use in scriptlets

Java Stream 6 JSP Introduction (cont.) Scriptlet ( ) –Also called “Scripting Elements” –Enable programmers to insert Java code in JSPs –Performs request processing Interacts with page elements and other components to implement dynamic pages Can access any variable or bean declared. –For example, to print a variable: <% String username = “alliant”; out.println(“username”); %>

Java Stream 7 JSP Introduction (cont.) Custom Tag Library –JSP’s tag extension mechanism –Enables programmers to define new tags Tags encapsulate complex functionality –Tags can manipulate JSP content

Java Stream 8 A First JavaServer Page Example Simple JSP example –Demonstrates Fixed-template data (XHTML markup) Creating a Java object (java.util.Date) Automatic conversion of JSP expression to a String –First invocation of clock.jsp Notice the delay while: –JSP container translates the JSP into a servlet –JSP container compiles the servlet –JSP container executes the servlet Subsequent invocations should not experience the same delay

Outline Java Stream 9 Using a JSP expression to insert the date and time in a Web page (Part 1). Line 10 Line <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " A Simple JSP Example big { font-family: helvetica, arial, sans-serif; 16 font-weight: bold; 17 font-size: 2em; } Simple JSP Example Creates Date object that is converted to a String implicitly and displayed in paragraph ( p ) element meta element refreshes the Web page every 60 seconds

Outline Java Stream 10 Using a JSP expression to insert the date and time in a Web page (Part 2). Program Output String representation of Date object appears here.

Java Stream 11 Implicit Objects Provide access to many servlet capabilities within a JSP. Extend classes or implement interfaces Such objects can invoke public aspects of classes/interfaces All the implicit objects are divided by four variable scopes: –Application: Objects owned by the container application Any servlet or JSP can manipulate these objects –Page: Objects that exist only in page in which they are defined Each page has its own instance of these objects –Request: Objects exist for duration of client request Objects go out of scope when response sent to client –Session: Objects exist for duration of client’s browsing session Objects go out of scope when client terminates session or when session timeout occurs

Java Stream 12 Implicit Objects (cont.)

Java Stream 13 Implicit Objects (cont.)

Java Stream 14 Scripting –How JSP programmers can insert Java code and logic –Currently, JSP support scripting only with Java JSP scripting components –Scriptlets (delimited by ) –Comments (delimited by ) –Expressions (delimited by ) –Declarations (delimited by ) –Escape sequences

Java Stream 15 Scripting (cont.) A sample: demonstrate basic scripting capabilities that Responding to get requests

Outline Java Stream 16 Scripting a JavaServer Page -- welcome.jsp (Part 1). Lines 17-23, Line 19 Line <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Processing "get" requests with data <% // begin scriptlet String name = request.getParameter( "firstName" ); if ( name != null ) { %> Hello, 27 Welcome to JavaServer Pages! <% // continue scriptlet } // end if Scriptlets used to insert Java code JSP declaration Use request implicit object to get parameter

Outline Java Stream 17 Scripting a JavaServer Page -- welcome.jsp (Part 2). Lines else { %> Type your first name and press Submit <% // continue scriptlet } // end else %> Scriptlets used to insert Java code

Outline Java Stream 18 Scripting a JavaServer Page -- welcome.jsp (Part 3).

Java Stream 19 Standard Actions JSP standard actions –Provide access to common tasks performed in a JSP Including content from other resources Forwarding requests to other resources Interacting with JavaBeans –JSP containers process actions at request time –Delimited by and

Java Stream 20 Standard Actions

Java Stream 21 Standard Actions (cont.)

Java Stream 22 Action action –Enables dynamic content to be included in a JSP –More flexible than include directive Requires more overhead when page contents change frequently

Outline Java Stream 23 Banner (banner.html) to include across the top Java(TM), C, C++, Visual Basic(R), 6 Object Technology, and Internet and 7 World Wide Web Programming Training 8 On-Site Seminars Delivered Worldwide B Boston Post Road, Suite 200, 17 Sudbury, MA

Outline Java Stream 24 Table of contents (toc.html) to include down the left side Publications/BookStore What's New Downloads/Resources FAQ (Frequently Asked Questions) Who we are Home Page Send questions or comments about this site to Copyright by Deitel & Associates, Inc. 33 All Rights Reserved. 34

Outline Java Stream 25 JSP clock2.jsp to include as the main content Lines <p class = "big" style = "color: cyan; font-size: 3em; 8 font-weight: bold;"> <% 13 // get client locale 14 java.util.Locale locale = request.getLocale(); // get DateFormat for client's Locale 17 java.text.DateFormat dateFormat = 18 java.text.DateFormat.getDateTimeInstance( 19 java.text.DateFormat.LONG, 20 java.text.DateFormat.LONG, locale ); %> Use Locale to format Data with specified DataFormat

Outline Java Stream 26 JSP include.jsp includes resources with (Part 1). 1 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Using jsp:include body { 14 font-family: tahoma, helvetica, arial, sans-serif; 15 } table, tr, td { 18 font-size:.9em; 19 border: 3px groove; 20 padding: 5px; 21 background-color: #dddddd; 22 } <img src = "images/logotiny.png" 31 width = "140" height = "93" 32 alt = "Deitel & Associates, Inc. Logo" /> 33 34

Outline Java Stream 27 JSP include.jsp includes resources with (Part 2). Lines Line 48 Lines <jsp:include page = "banner.html" 39 flush = "true" /> <jsp:include page = "clock2.jsp" 56 flush = "true" /> Use JSP action to include banner.html Use JSP action to include toc.html Use JSP action to include clock2.jsp

Outline Java Stream 28 JSP include.jsp includes resources with (Part 3).

Java Stream 29 Action action –Enables JSP to forward request to different resources Can forwarded requests only resources in same context action –Specifies name/value pairs of information Name/Value pairs are passed to other actions

Outline Java Stream 30 Forward1.jsp receives a firstName parameter, adds a date to the request parameters and forwards the request to forward2.jsp for further processing (Part 1). Lines <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Forward request to another JSP <% // begin scriptlet String name = request.getParameter( "firstName" ); if ( name != null ) { %> <jsp:param name = "date" 24 value = " " /> <% // continue scriptlet } // end if 30 else { %> 33 Forward request to forward2.jsp

Outline Java Stream 31 Forward1.jsp receives a firstName parameter, adds a date to the request parameters and forwards the request to forward2.jsp for further processing (Part 2) Type your first name and press Submit <% // continue scriptlet } // end else %>

Outline Java Stream 32 Forward2.jsp receives a request (from forward1.jsp in this example) and uses the request parameters as part of the response to the client (Part 1). Lines Line <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " <html xmlns = " Processing a forwarded request big { 14 font-family: tahoma, helvetica, arial, sans-serif; 15 font-weight: bold; 16 font-size: 2em; 17 } Hello, 24 Your request was received and forwarded at Receive request from forward1.jsp, then get firstName parameter from request Get data parameter from request

Outline Java Stream 33 Forward2.jsp receives a request (from forward1.jsp in this example) and uses the request parameters as part of the response to the client (Part 2)

Java Stream 34 Action action –Adds an applet or JavaBean to a Web page –Also enables client to download and install Java Plug-in

Java Stream 35 Action (cont.)

Outline Java Stream 36 An applet to demonstrate in Fig (Part 1). Line 14 Lines // ShapesApplet.java 2 // Applet that demonstrates a Java2D GeneralPath. 3 package applet; 4 5 // Java core packages 6 import java.applet.*; 7 import java.awt.event.*; 8 import java.awt.*; 9 import java.awt.geom.*; // Java extension packages 12 import javax.swing.*; public class ShapesApplet extends JApplet { // initialize the applet 17 public void init() 18 { 19 // obtain color parameters from XHTML file 20 try { 21 int red = Integer.parseInt( getParameter( "red" ) ); 22 int green = Integer.parseInt( getParameter( "green" ) ); 23 int blue = Integer.parseInt( getParameter( "blue" ) ); Color backgroundColor = new Color( red, green, blue ); setBackground( backgroundColor ); 28 } // if there is an exception while processing the color 31 // parameters, catch it and ignore it 32 catch ( Exception exception ) { 33 // do nothing 34 } 35 } Set JApplet background color based on parameter values Create JApplet to embed in JSP

Outline Java Stream 37 An applet to demonstrate in Fig (Part 2). Lines public void paint( Graphics g ) 38 { 39 // create arrays of x and y coordinates 40 int xPoints[] = 41 { 55, 67, 109, 73, 83, 55, 27, 37, 1, 43 }; 42 int yPoints[] = 43 { 0, 36, 36, 54, 96, 72, 96, 54, 36, 36 }; // obtain reference to a Graphics2D object 46 Graphics2D g2d = ( Graphics2D ) g; // create a star from a series of points 49 GeneralPath star = new GeneralPath(); // set the initial coordinate of the GeneralPath 52 star.moveTo( xPoints[ 0 ], yPoints[ 0 ] ); // create the star--this does not draw the star 55 for ( int k = 1; k < xPoints.length; k++ ) 56 star.lineTo( xPoints[ k ], yPoints[ k ] ); // close the shape 59 star.closePath(); // translate the origin to (200, 200) 62 g2d.translate( 200, 200 ); // rotate around origin and draw stars in random colors 65 for ( int j = 1; j <= 20; j++ ) { 66 g2d.rotate( Math.PI / 10.0 ); 67 Use GeneralPath to display several colored stars

Outline Java Stream 38 An applet to demonstrate in Fig (Part 3). Lines g2d.setColor( 69 new Color( ( int ) ( Math.random() * 256 ), 70 ( int ) ( Math.random() * 256 ), 71 ( int ) ( Math.random() * 256 ) ) ); g2d.fill( star ); // draw a filled star 74 } 75 } 76 } Use GeneralPath to display several colored stars

Outline Java Stream 39 Using to embed a Java 2 applet in a JSP (Part 1). Lines Lines Using jsp:plugin to load an applet <jsp:plugin type = "applet" 11 code = "applet.ShapesApplet.class" 12 codebase = “./jsp" 13 width = "400" 14 height = "400"> Use jsp:plugin action to display JApplet in JSP Use jsp:param action to specify JApplet background color

Outline Java Stream 40 Using to embed a Java 2 applet in a JSP (Part 2).

Java Stream 41 Action action –Enables JSP to manipulate Java object Creates Java object or locates an existing object for use in JSP

Outline Java Stream 42 Rotator bean that maintains a set of advertisements (Part 1). Lines Lines // Rotator.java 2 // A JavaBean that rotates advertisements. 3 package com.deitel.advjhtp1.jsp.beans; 4 5 public class Rotator { 6 private String images[] = { "images/jhtp3.jpg", 7 "images/xmlhtp1.jpg", "images/ebechtp1.jpg", 8 "images/iw3htp1.jpg", "images/cpphtp3.jpg" }; 9 10 private String links[] = { 11 " "deitelassociatin", 13 " "deitelassociatin", 15 " "deitelassociatin", 17 " "deitelassociatin", 19 " "deitelassociatin" }; private int selectedIndex = 0; // returns image file name for current ad 25 public String getImage() 26 { 27 return images[ selectedIndex ]; 28 } // returns the URL for ad's corresponding Web site 31 public String getLink() 32 { 33 return links[ selectedIndex ]; 34 } 35 Return image file name for book cover image Return hyperlink to book at Amazon.com

Outline Java Stream 43 Rotator bean that maintains a set of advertisements (Part 2). Lines // update selectedIndex so next calls to getImage and 37 // getLink return a different advertisement 38 public void nextAd() 39 { 40 selectedIndex = ( selectedIndex + 1 ) % images.length; 41 } 42 } Update Rotator so subsequent calls to getImage and getLink return information for different advertisements

Outline Java Stream 44 JSP adrotator.jsp uses a Rotator bean to display a different advertisement on each request to the page (Part 1). Lines 7-8 Line 22 Lines <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " <jsp:useBean id = "rotator" scope = "application" 8 class = "com.deitel.advjhtp1.jsp.beans.Rotator" /> AdRotator Example big { font-family: helvetica, arial, sans-serif; 17 font-weight: bold; 18 font-size: 2em } AdRotator Example <a href = "<jsp:getProperty name = "rotator" 30 property = "link" />"> <img src = "<jsp:getProperty name = "rotator" 33 property = "image" />" alt = "advertisement" /> Use jsp:useBean action to obtain reference to Rotator object Invoke Rotator ’s nextAd method Define hyperlink to Amazon.com site

Outline Java Stream 45 JSP adrotator.jsp uses a Rotator bean to display a different advertisement on each request to the page (Part 2)

Java Stream 46 Action (cont.)

Outline Java Stream 47 GuestBean stores information for one guest (Part 1). Line 6 1 // GuestBean.java 2 // JavaBean to store data for a guest in the guest book. 3 package com.deitel.advjhtp1.jsp.beans; 4 5 public class GuestBean { 6 private String firstName, lastName, ; 7 8 // set the guest's first name 9 public void setFirstName( String name ) 10 { 11 firstName = name; 12 } // get the guest's first name 15 public String getFirstName() 16 { 17 return firstName; 18 } // set the guest's last name 21 public void setLastName( String name ) 22 { 23 lastName = name; 24 } // get the guest's last name 27 public String getLastName() 28 { 29 return lastName; 30 } 31 GuestBean defines three guest properties: firstName, lastName and

Outline Java Stream 48 GuestBean stores information for one guest (Part 2). 32 // set the guest's address 33 public void set ( String address ) 34 { 35 = address; 36 } // get the guest's address 39 public String get () 40 { 41 return ; 42 } 43 }

Outline Java Stream 49 GuestDataBean performs database access on behalf of guestBook- Login.jsp (Part 1). Lines // GuestDataBean.java 2 // Class GuestDataBean makes a database connection and supports 3 // inserting and retrieving data from the database. 4 package com.deitel.advjhtp1.jsp.beans; 5 6 // Java core packages 7 import java.io.*; 8 import java.sql.*; 9 import java.util.*; public class GuestDataBean { 12 private Connection connection; 13 private PreparedStatement addRecord, getRecords; // construct TitlesBean object 16 public GuestDataBean() throws Exception 17 { 18 // load the Cloudscape driver 19 Class.forName( "com.mysql.jdbc.Driver" ); // connect to the database 22 connection = DriverManager.getConnection( 23 "jdbc:mysql://localhost:3306/test" ); getRecords = 26 connection.prepareStatement( 27 "SELECT firstName, lastName, FROM guests" 28 ); addRecord = 31 connection.prepareStatement( 32 "INSERT INTO guests ( " + 33 "firstName, lastName, ) " + 34 "VALUES ( ?, ?, ? )" 35 ); GuestDataBean connects to guestbook database

Outline Java Stream 50 GuestDataBean performs database access on behalf of guestBook- Login.jsp (Part 2). Lines } // return an ArrayList of GuestBeans 39 public ArrayList getGuestList() throws SQLException 40 { 41 ArrayList guestList = new ArrayList(); // obtain list of titles 44 ResultSet results = getRecords.executeQuery(); // get row data 47 while ( results.next() ) { 48 GuestBean guest = new GuestBean(); guest.setFirstName( results.getString( 1 ) ); 51 guest.setLastName( results.getString( 2 ) ); 52 guest.set ( results.getString( 3 ) ); guestList.add( guest ); 55 } return guestList; 58 } // insert a guest in guestbook database 61 public void addGuest( GuestBean guest ) throws SQLException 62 { 63 addRecord.setString( 1, guest.getFirstName() ); 64 addRecord.setString( 2, guest.getLastName() ); 65 addRecord.setString( 3, guest.get () ); addRecord.executeUpdate(); 68 } 69 GuestDataBean provides methods getGuestList and addGuest to manipulate database

Outline Java Stream 51 GuestDataBean performs database access on behalf of guestBook- Login.jsp (Part 3). 70 // close statements and terminate database connection 71 protected void finalize() 72 { 73 // attempt to close database connection 74 try { 75 getRecords.close(); 76 addRecord.close(); 77 connection.close(); 78 } // process SQLException on close operation 81 catch ( SQLException sqlException ) { 82 sqlException.printStackTrace(); 83 } 84 } 85 }

Outline Java Stream 52 JavaServer page guestBook- Login.jsp enables the user to submit a first name, a last name and an address to be placed in the guest book (Part 1). Line 8 Lines <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " <jsp:useBean id = "guest" scope = "page" 12 class = "com.deitel.advjhtp1.jsp.beans.GuestBean" /> 13 <jsp:useBean id = "guestData" scope = "request" 14 class = "com.deitel.advjhtp1.jsp.beans.GuestDataBean" /> Guest Book Login body { 23 font-family: tahoma, helvetica, arial, sans-serif; 24 } table, tr, td { 27 font-size:.9em; 28 border: 3px groove; 29 padding: 5px; 30 background-color: #dddddd; 31 } page directive defines information that is globally available in JSP Use jsp:useBean actions to obtain references to GuestBean and GuestDataBean objects

Outline Java Stream 53 JavaServer page guestBook- Login.jsp enables the user to submit a first name, a last name and an address to be placed in the guest book (Part 2). Line <% // start scriptlet if ( guest.getFirstName() == null || 41 guest.getLastName() == null || 42 guest.get () == null ) { %> Enter your first name, last name and 48 address to register in our guest book First name Last name Set properties of GuestBean with request parameter values

Outline Java Stream 54 JavaServer page guestBook- Login.jsp enables the user to submit a first name, a last name and an address to be placed in the guest book (Part 3). Line <input type = "submit" 78 value = "Submit" /> <% // continue scriptlet } // end if 87 else { 88 guestData.addGuest( guest ); %> <% // continue scriptlet } // end else %> Forward request to guestBookView.jsp

Outline Java Stream 55 JavaServer page guestBook- View.jsp displays the contents of the guest book (Part 1). Lines 9-10 Lines <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " <jsp:useBean id = "guestData" scope = "request" 14 class = "com.deitel.advjhtp1.jsp.beans.GuestDataBean" /> Guest List body { 23 font-family: tahoma, helvetica, arial, sans-serif; 24 } table, tr, td, th { 27 text-align: center; 28 font-size:.9em; 29 border: 3px groove; 30 padding: 5px; 31 background-color: #dddddd; 32 } Use page directive import to specify Java classes and packages that are used in JSP context Use jsp:useBean action to obtain reference to GuestDataBean

Outline Java Stream 56 JavaServer page guestBook- View.jsp displays the contents of the guest book (Part 2). Lines Guest List Last name 43 First name <% // start scriptlet List guestList = guestData.getGuestList(); 53 Iterator guestListIterator = guestList.iterator(); 54 GuestBean guest; while ( guestListIterator.hasNext() ) { 57 guest = ( GuestBean ) guestListIterator.next(); %> "> Scriptlet displays last name, first name and address for all guests

Outline Java Stream 57 JavaServer page guestBook- View.jsp displays the contents of the guest book (Part 3) <% // continue scriptlet } // end while %>

Outline Java Stream 58 JavaServer page guestBookError- View.jsp responds to exceptions in guestBook- Login.jsp and guestBook- View.jsp (Part 1). Line 8 Line <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Error! bigRed { 19 font-size: 2em; 20 color: red; 21 font-weight: bold; 22 } <% // scriptlet to determine exception type 30 // and output beginning of error message 31 if ( exception instanceof SQLException ) 32 %> An SQLException 35 Use page directive isErrorPage to specify that guestBookError- Page is an error page Use implicit object exception to determine error to be displayed

Outline Java Stream 59 JavaServer page guestBookError- View.jsp responds to exceptions in guestBook- Login.jsp and guestBook- View.jsp (Part 2). Line <% 37 else if ( exception instanceof ClassNotFoundException ) 38 %> A ClassNotFoundException <% 43 else 44 %> An exception occurred while interacting with the guestbook database The error message was: Please try again later Use implicit object exception to determine error to be displayed

Java Stream 60 Action (cont.)

Java Stream 61 Action (cont.)

Java Stream 62 Directives JSP directives –Messages to JSP container –Enable programmer to: Specify page settings Include content from other resources Specify custom-tag libraries –Delimited by

Java Stream 63 Directives (cont.)

Java Stream 64 page Directive JSP page directive –Specifies JSP’s global settings in JSP container

Java Stream 65 page Directive (cont.)

Java Stream 66 page Directive (cont.)

Java Stream 67 page Directive (cont.)

Java Stream 68 include Directive JSP include directive –Includes content of another resource at JSP translation time Not as flexible as action

Outline Java Stream 69 JSP includeDirectiv e.jsp demonstrates including content at translation-time with directive include (Part 1). Line <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Using the include directive body { 14 font-family: tahoma, helvetica, arial, sans-serif; 15 } table, tr, td { 18 font-size:.9em; 19 border: 3px groove; 20 padding: 5px; 21 background-color: #dddddd; 22 } <img src = "images/logotiny.png" 31 width = "140" height = "93" 32 alt = "Deitel & Associates, Inc. Logo" /> Reimplement include.jsp using include directives

Outline Java Stream 70 JSP includeDirectiv e.jsp demonstrates including content at translation-time with directive include (Part 2). Line 38 Line 47 Line Use include directive to include banner.html Use include directive to include toc.html Use include directive to include clock2.jsp

Outline Java Stream 71 JSP includeDirectiv e.jsp demonstrates including content at translation-time with directive include (Part 3).

Java Stream 72 Custom Tag Libraries Custom-tag libraries –Encapsulates complex functionality for use in JSPs –Define custom tags Used for creating dynamic content Classes that implement interface Tag –Package javax.servlet.jsp.tagext

Outline Java Stream 73 JSP customTag- Welcome.jsp uses a simple custom tag. Line 9 Line <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Simple Custom Tag Example The following text demonstrates a custom tag: Use taglib directive to include use tags in tag library Use custom tag welcome to insert text in the JSP

Outline Java Stream 74 WelcomeTag- Handler custom tag handler. Line 12 Lines Line 20 1 // WelcomeTagHandler.java 2 // Custom tag handler that handles a simple tag. 3 package com.alliant.test.jsp.taglibrary; 4 5 // Java core packages 6 import java.io.*; 7 8 // Java extension packages 9 import javax.servlet.jsp.*; 10 import javax.servlet.jsp.tagext.*; public class WelcomeTagHandler extends TagSupport { // Method called to begin tag processing 15 public int doStartTag() throws JspException 16 { 17 // attempt tag processing 18 try { 19 // obtain JspWriter to output content 20 JspWriter out = pageContext.getOut(); // output content 23 out.print( "Welcome to JSP Tag Libraries!" ); 24 } // rethrow IOException to JSP container as JspException 27 catch( IOException ioException ) { 28 throw new JspException( ioException.getMessage() ); 29 } return SKIP_BODY; // ignore the tag's body 32 } 33 } Class WelcomeTagHandler implements interface Tag by extending class TagSupport JSP container calls method doStartTag when it encounters the starting custom tag Use custom tag handler’s pageContext to obtain JSP’s JspWriter object for outputting text

Outline Java Stream 75 Custom tag library descriptor file test- taglib.tld. Line 8 Line 18 Lines <!DOCTYPE taglib PUBLIC 3 "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" 4 " test A simple tab library for the examples welcome com.alliant.test.jsp.taglibrary.WelcomeTagHandler empty Inserts content welcoming user to tag libraries Define custom-tag library descriptor file tag element describes welcome custom tag Specify custom tag name and class

Java Stream 76 Custom Tag with Attributes XHTML and JSP elements –Use attributes to customize functionality Specify attributes for custom tags

Outline Java Stream 77 Specifying attributes for a custom tag (Part 1). Lines 20 and <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Specifying Custom Tag Attributes Demonstrating an attribute with a string value Demonstrating an attribute with an expression value <% 27 String name = request.getParameter( "name" ); 28 %> " /> Use welcome2 tag to insert text in JSP that is customized based on firstName attribute value

Outline Java Stream 78 Specifying attributes for a custom tag (Part 2).

Outline Java Stream 79 Welcome2Tag- Handler custom tag handler for a tag with an attribute (Part 1). Line 13 Lines // Welcome2TagHandler.java 2 // Custom tag handler that handles a simple tag. 3 package com.alliant.test.jsp.taglibrary; 4 5 // Java core packages 6 import java.io.*; 7 8 // Java extension packages 9 import javax.servlet.jsp.*; 10 import javax.servlet.jsp.tagext.*; public class Welcome2TagHandler extends TagSupport { 13 private String firstName = ""; // Method called to begin tag processing 16 public int doStartTag() throws JspException 17 { 18 // attempt tag processing 19 try { 20 // obtain JspWriter to output content 21 JspWriter out = pageContext.getOut(); // output content 24 out.print( "Hello " + firstName + 25 ", Welcome to JSP Tag Libraries!" ); 26 } // rethrow IOException to JSP container as JspException 29 catch( IOException ioException ) { 30 throw new JspException( ioException.getMessage() ); 31 } return SKIP_BODY; // ignore the tag's body 34 } 35 Define firstName attributeUse firstName attribute value as part of text output by custom tag

Outline Java Stream 80 Welcome2Tag- Handler custom tag handler for a tag with an attribute (Part 2). Lines // set firstName attribute to the users first name 37 public void setFirstName( String username ) 38 { 39 firstName = username; 40 } 41 } Corresponding set accessor method for firstName attribute value

Outline Java Stream 81 Element tag for the welcome2 custom tag. Lines welcome com.alliant.test.jsp.taglibrary.Welcome2TagHandler empty Inserts content welcoming user to tag libraries. Uses 13 attribute "name" to insert the user's name firstName 18 true 19 true Introduce element attribute for specifying the characteristics of a tag’s attributes

Java Stream 82 Evaluating the Body of a Custom Tag Custom tags –Particularly useful for processing element body

Outline Java Stream 83 Using a custom tag that interacts with its body (Part 1). 1 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " Guest List body { 17 font-family: tahoma, helvetica, arial, sans-serif 18 } table, tr, td, th { 21 text-align: center; 22 font-size:.9em; 23 border: 3px groove; 24 padding: 5px; 25 background-color: #dddddd 26 } Guest List 32

Outline Java Stream 84 Fig Using a custom tag that interacts with its body (Part 2). Lines Last name 36 First name "> Use custom guestlist tag to display last name, first name and

Outline Java Stream 85 Fig Using a custom tag that interacts with its body (Part 3).

Outline Java Stream 86 GuestBookTag custom tag handler (Part 1). 1 // GuestBookTag.java 2 // Custom tag handler that reads information from the guestbook 3 // database and makes that data available in a JSP. 4 package com.alliant.test.jsp.taglibrary; 5 6 // Java core packages 7 import java.io.*; 8 import java.util.*; 9 10 // Java extension packages 11 import javax.servlet.jsp.*; 12 import javax.servlet.jsp.tagext.*; // Deitel packages 15 import com.alliant.test.jsp.beans.*; public class GuestBookTag extends BodyTagSupport { 18 private String firstName; 19 private String lastName; 20 private String ; private GuestDataBean guestData; 23 private GuestBean guest; 24 private Iterator iterator; // Method called to begin tag processing 27 public int doStartTag() throws JspException 28 { 29 // attempt tag processing 30 try { 31 guestData = new GuestDataBean(); List list = guestData.getGuestList(); 34 iterator = list.iterator(); 35

Outline Java Stream 87 GuestBookTag custom tag handler (Part 2). Lines Line 55 Line 59 Line if ( iterator.hasNext() ) { 37 processNextGuest(); return EVAL_BODY_TAG; // continue body processing 40 } 41 else 42 return SKIP_BODY; // terminate body processing 43 } // if any exceptions occur, do not continue processing 46 // tag's body 47 catch( Exception exception ) { 48 exception.printStackTrace(); 49 return SKIP_BODY; // ignore the tag's body 50 } 51 } // process body and determine if body processing 54 // should continue 55 public int doAfterBody() 56 { 57 // attempt to output body data 58 try { 59 bodyContent.writeOut( getPreviousOut() ); 60 } // if exception occurs, terminate body processing 63 catch ( IOException ioException ) { 64 ioException.printStackTrace(); 65 return SKIP_BODY; // terminate body processing 66 } bodyContent.clearBody(); 69 Method doAfterBody can be called many times to process the body of a custom tag Process the first client’s dataExtract information for first guest and create variable containing that information in the JSP’s PageContext Ensure that the outputted body content is not processed in subsequent call to method doAfterBody

Outline Java Stream 88 GuestBookTag custom tag handler (Part 3). Lines if ( iterator.hasNext() ) { 71 processNextGuest(); return EVAL_BODY_TAG; // continue body processing 74 } 75 else 76 return SKIP_BODY; // terminate body processing 77 } // obtains the next GuestBean and extracts its data 80 private void processNextGuest() 81 { 82 // get next guest 83 guest = ( GuestBean ) iterator.next(); pageContext.setAttribute( 86 "firstName", guest.getFirstName() ); pageContext.setAttribute( 89 "lastName", guest.getLastName() ); pageContext.setAttribute( 92 " ", guest.get () ); 93 } 94 } Extract information for next guest (if available)

Outline Java Stream 89 GuestBookTag- ExtraInfo used by the container to define scripting variables in a JSP that uses the guestlist custom tag. 1 // GuestBookTagExtraInfo.java 2 // Class that defines the variable names and types created by 3 // custom tag handler GuestBookTag. 4 package com.alliant.test.jsp.taglibrary; 5 6 // Java core packages 7 import javax.servlet.jsp.tagext.*; 8 9 public class GuestBookTagExtraInfo extends TagExtraInfo { // method that returns information about the variables 12 // GuestBookTag creates for use in a JSP 13 public VariableInfo [] getVariableInfo( TagData tagData ) 14 { 15 VariableInfo firstName = new VariableInfo( "firstName", 16 "String", true, VariableInfo.NESTED ); VariableInfo lastName = new VariableInfo( "lastName", 19 "String", true, VariableInfo.NESTED ); VariableInfo = new VariableInfo( " ", 22 "String", true, VariableInfo.NESTED ); VariableInfo varableInfo [] = 25 { firstName, lastName, }; return varableInfo; 28 } 29 }

Outline Java Stream 90 Element tag for the guest-list custom tag. Lines guestlist com.alliant.test.jsp.taglibrary.GuestBookTag com.alliant.test.jsp.taglibrary.GuestBookTagExtraInfo JSP Iterates over a list of GuestBean objects Specify custom tag’s ExtraInfo class