 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.

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.
 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.
Pertemuan 10 Pemrograman JSP Matakuliah: T0053/Web Programming Tahun: 2006 Versi: 2.
1 CS6320 – JSP L. Grewe 2 Java Server Pages Servlets require you to write out entire page delivered with print statements Servlets require you to write.
CMPUT 391 – Database Management Systems Department of Computing Science University of Alberta CMPUT 391 Database Management Systems JavaServer Pages (JSP)
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.
JavaServer Pages TM Introduce by
 2004 Prentice Hall, Inc. All rights reserved. Chapter 37 - JavaServer Pages (JSP): Bonus for Java Developers Outline 37.1 Introduction 37.2 JavaServer.
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.
_______________________________________________________________________________________________________________ E-Commerce: Fundamentals and Applications1.
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.
Introduction to JSP Based on: Marty Hall, Larry Brown, Core Servlets and JavaServer Pages.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 30 – Bookstore Application: Client Tier Introducing.
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
Introduction to Java Server Pages (JSPs) Robert Thornton.
 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)
Jordan Anastasiade. All rights reserved.
 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. 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.
Stanisław Osiński, 2002JSP – A technology for serving dynamic web content Java Server Pages™ A technology for serving dynamic web content Stanisław Osiński,
JAVA SERVER PAGES CREATING DYNAMIC WEB PAGES USING JAVA James Faeldon CS 119 Enterprise Systems Programming.
Slides © Marty Hall, book © Sun Microsystems Press 1 JSP Scripting Elements Core Servlets & JSP book:
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 32.1 Reviewing the Bookstore Application 32.2.
JSTL Lec Umair©2006, All rights reserved JSTL (ni) Acronym of  JavaServer Pages Standard Tag Library JSTL (like JSP) is a specification, not an.
Introduction to JavaServer Pages. 2 JSP and Servlet Limitations of servlet  It’s inaccessible to non-programmers JSP is a complement to servlet  focuses.
Java Stream 1 Unit 10 – Java Server Pages Introduction A First JavaServer Page Example Implicit Objects Scripting Standard Actions Directives Custom Tag.
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.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 27 JavaServer Page.
CSC 2720 Building Web Applications JavaServer Pages (JSP) The Basics.
1 Introduction to XHTML: Part 1 Outline Introduction Elements and Attributes Editing XHTML Common Elements W3C XHTML Validation Service Headers Linking.
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.
© 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. Types of JSP Scripting Elements Expressions of the form, which are evaluated and inserted into the servlet's output. Scriptlets of the form, which.
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.
CSI 3125, Preliminaries, page 1 JSP (Java Server Pages)
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.
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.
JavaServer Pages (JSP)
MSIS 655 Advanced Business Applications Programming
Java Server Pages.
COP 4610L: Applications in the Enterprise Spring 2005
COP 4610L: Applications in the Enterprise Spring 2005
J2EE Lecture 1:Servlet and JSP
Java Chapter 7 (Estifanos Tilahun Mihret--Tech with Estif)
Presentation transcript:

 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 Page Example 25.4 Implicit Objects 25.5 Scripting Scripting Components Scripting Example 25.6 Standard Actions Action Action Action

 2003 Prentice Hall, Inc. All rights reserved Introduction JavaServer Pages –Extension of Servlet technology Simplify delivery of dynamic Web content Reuse existing Java components –Without programming Java –Use scripts embedded in HTML files Classes and interfaces specific to JSP –Package javax.servlet.jsp –Package javax.servlet.jsp.tagext

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview Key components –Directives –Actions –Scriptlets –Tag libraries

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview (cont.) Directive –Message to JSP container i.e., program that compiles/executes JSPs –Enable programmers to specify Page settings Content to include from other resources

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview (cont.) Action –Predefined JSP tags that encapsulate functionality –Can be embedded in JSP –Often performed based on information from client request –Can be used to create Java objects for use in scriptlets

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview (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

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview (cont.) Custom Tag Library –JSP’s tag extension mechanism –Enables programmers to define new tags Tags encapsulate complex functionality –Tags can manipulate JSP content

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview (cont.) 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 Servlets –Used when small amount of content is fixed-template data Most content generated dynamically

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview (cont.) Some servlets do not produce content –Invoke other servlets and JSPs JSPs execute as part of a Web server –JSP container JSP first request –JSP container translates a JSP into a servlet Handle the current and future requests Code that represents the JSP –Placed in servlet’s _jspService method

 2003 Prentice Hall, Inc. All rights reserved JavaServer Pages Overview (cont.) JSP errors –Translation-time errors Occur when JSPs are translated into servlets –Request-time errors Occur during request processing Methods jspInit and jspDestroy –Container invokes when initializing and terminating a JSP Methods are defined in JSP declarations –Part of the JSP scripting mechanism

 2003 Prentice Hall, Inc. All rights reserved A First JavaServer Page Example Simple JSP example (Fig. 25.1) –Demonstrates Fixed-template data (XHTML markup) Creating a Java object ( java.util.Date ) Automatic conversion of JSP expression to a String meta element to refresh Web page at specified interval –First invocation of clock.jsp Some 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

 2003 Prentice Hall, Inc. All rights reserved A First JavaServer Page Example Simple JSP example (Fig. 25.1) JSP expression, String representation inserted into response to client

 2003 Prentice Hall, Inc. All rights reserved. Outline 13 clock.jsp Line 10 Meta element refershes the Web page every 60 seconds. 1 2 <!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 23 meta element refreshes the Web page every 60 seconds

 2003 Prentice Hall, Inc. All rights reserved. Outline 14 clock.jsp Line 30 Creates Date object Creates Date object that is converted to a String implicitly and displayed in paragraph ( p ) element

 2003 Prentice Hall, Inc. All rights reserved. Outline 15 Clock.jsp

 2003 Prentice Hall, Inc. All rights reserved Implicit Objects Implicit Objects –Provide access to many servlet capabilities within a JSP –Four scopes Application scope –Objects owned by the container application –Any servlet or JSP can manipulate these objects Page scope –Objects that exist only in page in which they are defined –Each page has its own instance of these objects Request scope –Objects exist for duration of client request –Objects go out of scope after response sent to client Session scope –Objects exist for duration of client’s browsing session –Objects go out of scope when client terminates session or when session timeout occurs

 2003 Prentice Hall, Inc. All rights reserved. 17

 2003 Prentice Hall, Inc. All rights reserved Scripting Scripting –Dynamically generated content –Insert Java code and logic in JSP using scripting

 2003 Prentice Hall, Inc. All rights reserved Scripting Components JSP scripting components –Scriptlets (blocks of code containing Java statements delimited by ) –Comments JSP comments (delimited by ) XHTML comments (delimited by ) Java’s comments (delimited by // and /* and */ ) –Expressions (delimited by ) (evaluated when client requests the JSP, String version sent in response) –Declarations (delimited by ) (define variables for use in JSP

 2003 Prentice Hall, Inc. All rights reserved Scripting Example Demonstrate basic scripting capabilities –Responding to get requests

 2003 Prentice Hall, Inc. All rights reserved. Outline 21 welcome.jsp Lines 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 ) { %> 24 Scriptlets used to insert Java code Use request implicit object to get parameter

 2003 Prentice Hall, Inc. All rights reserved. Outline 22 welcome.jsp Line 26 Lines and Hello, 27 Welcome to JavaServer Pages! <% // continue scriptlet } // end if 33 else { %> Type your first name and press Submit <% // continue scriptlet } // end else %> JSP expressionScriptlets used to insert Java code

 2003 Prentice Hall, Inc. All rights reserved. Outline 23 welcome.jsp

 2003 Prentice Hall, Inc. All rights reserved Standard Actions JSP standard actions (most common tasks) –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

 2003 Prentice Hall, Inc. All rights reserved Standard Actions

 2003 Prentice Hall, Inc. All rights reserved Action action –Enables dynamic content to be included in a JSP at request time –More flexible than include directive (included at translation time) Requires more overhead when page contents change frequently –page is the resource to include –flush must be true to say to flush buffer after including

 2003 Prentice Hall, Inc. All rights reserved. Outline 27 banner.html 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 Clock Tower Place, Suite 200, 14 Maynard, MA

 2003 Prentice Hall, Inc. All rights reserved. Outline 28 toc.html Publications/BookStore What's New Downloads/Resources FAQ (Frequently Asked Questions) Who we are 22 23

 2003 Prentice Hall, Inc. All rights reserved. Outline 29 toc.html Home Page Send questions or comments about this site to Copyright by Deitel & Associates, Inc. 33 All Rights Reserved. 34

 2003 Prentice Hall, Inc. All rights reserved. Outline 30 clock2.jsp 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 Date with specified DateFormat

 2003 Prentice Hall, Inc. All rights reserved. Outline 31 include.jsp 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 }

 2003 Prentice Hall, Inc. All rights reserved. Outline 32 include.jsp Lines Use JSP action to include banner.html. Line 48 Use JSP action to include toc.html <img src = "images/logotiny.png" 31 width = "140" height = "93" 32 alt = "Deitel & Associates, Inc. Logo" /> <jsp:include page = "banner.html" 39 flush = "true" /> Use JSP action to include banner.html Use JSP action to include toc.html

 2003 Prentice Hall, Inc. All rights reserved. Outline 33 include.jsp Lines Use JSP action to include clock2.jsp <jsp:include page = "clock2.jsp" 56 flush = "true" /> Use JSP action to include clock2.jsp

 2003 Prentice Hall, Inc. All rights reserved. Outline 34 include.jsp

 2003 Prentice Hall, Inc. All rights reserved Action action –Enables JSP to forward request to different resources Can forward requests only to resources in same context Original JSP terminates action –Specifies name/value pairs of information Name/Value pairs are passed to other actions

 2003 Prentice Hall, Inc. All rights reserved. Outline 36 forward1.jsp 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 = " " /> Forward request to forward2.jsp

 2003 Prentice Hall, Inc. All rights reserved. Outline 37 forward1.jsp 27 <% // continue scriptlet } // end if 30 else { %> Type your first name and press Submit <% // continue scriptlet } // end else %>

 2003 Prentice Hall, Inc. All rights reserved. Outline 38 forward2.jsp Lines <!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

 2003 Prentice Hall, Inc. All rights reserved. Outline 39 forward2.jsp Line Get date parameter from request

 2003 Prentice Hall, Inc. All rights reserved Action action –Enables JSP to manipulate Java object Creates Java object or locates an existing object for use in JSP – same as –

 2003 Prentice Hall, Inc. All rights reserved. Outline 41 Rotator.java 1 // Fig : Rotator.java 2 // A JavaBean that rotates advertisements. 3 package com.deitel.jhtp5.jsp; 4 5 public class Rotator { 6 private String images[] = { "images/advjHTP1.jpg", 7 "images/cppHTP4.jpg", "images/iw3HTP2.jpg", 8 "images/jwsFEP1.jpg", "images/vbnetHTP2.jpg" }; 9 10 private String links[] = { 11 " "deitelassociatin", 13 " "deitelassociatin", 15 " "deitelassociatin", 17 " "deitelassociatin", 19 " "deitelassociatin" }; private int selectedIndex = 0; 23

 2003 Prentice Hall, Inc. All rights reserved. Outline 42 Rotator.java Lines Lines Lines // 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 } // 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 Return image file name for book cover image Return hyperlink to book at Amazon.com

 2003 Prentice Hall, Inc. All rights reserved. Outline 43 adrotator.jsp Lines 7-8 Line <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 3 " <jsp:useBean id = "rotator" scope = "application" 8 class = "com.deitel.jhtp5.jsp.Rotator" /> AdRotator Example big { font-family: helvetica, arial, sans-serif; 17 font-weight: bold; 18 font-size: 2em } Use jsp:useBean action to obtain reference to Rotator object Invoke Rotator ’s nextAd method

 2003 Prentice Hall, Inc. All rights reserved. Outline 44 adrotator.jsp Lines AdRotator Example <a href = "<jsp:getProperty name = "rotator" 30 property = "link" />"> <img src = "<jsp:getProperty name = "rotator" 33 property = "image" />" alt = "advertisement" /> Define hyperlink to Amazon.com site