 Obtaining a RequestDispatcher Forwarding requests from servlets to dynamic resources  Forwarding requests from servlets to static resources  Using.

Slides:



Advertisements
Similar presentations
J2EE training: 1 Course Material Usage Rules PowerPoint slides for use only in full-semester, for-credit courses at degree-granting.
Advertisements

JSP1 Java Server Pages (JSP) Introducing JavaServer Pages TM (JSP TM ) JSP scripting elements.
 Copyright Wipro Technologies JSP Ver 1.0 Page 1 Talent Transformation Java Server Pages.
Java Servlet & JSP © copyright 2005 SNU OOPSLA Lab.
J2EE Servlets and JSP Advanced topics Presented by Bartosz Sakowicz.
18-Jun-15 JSP Java Server Pages Reference: Tutorial/Servlet-Tutorial-JSP.html.
JSP Java Server Pages Reference:
June 1, 2000 Object Oriented Programming in Java (95-707) Advanced Topics 1 Lecture 10 Object Oriented Programming in Java Advanced Topics Servlets.
MVC Architecture1 Usage Rules PowerPoint slides for use only in for-credit courses at degree-granting institutions Slides can be modified.
Integrating Servlets and JavaServer Pages Vijayan Sugumaran School of Business Administration Oakland University Parts of this presentation provided by.
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.
Servlets Compiled by Dr. Billy B. L. Lim. Servlets Servlets are Java programs which are invoked to service client requests on a Web server. Servlets extend.
Introduction to Java web programming Dr Jim Briggs JWP intro1.
Java Servlets. What Are Servlets? Basically, a java program that runs on the server Basically, a java program that runs on the server Creates dynamic.
Struts 2.0 an Overview ( )
UNIT-V The MVC architecture and Struts Framework.
CSC 2720 Building Web Applications Using Java Beans, Custom Tags and Tag Libraries in JSP pages.
Introduction to JSP Based on: Marty Hall, Larry Brown, Core Servlets and JavaServer Pages.
J2EE training: 1 Course Material Usage Rules PowerPoint slides for use only in full-semester, for-credit courses at degree-granting.
What Are Beans? beans are simply Java classes that are written in a standard format. A bean class must have a zero-argument (default) constructor. A bean.
J2EE training: 1 Course Material Usage Rules PowerPoint slides for use only in full-semester, for-credit courses at degree-granting.
SKT-SSU IT Training Center Servlet and JSP. Chapter Three: Servlet Basics.
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.
Java Server Pages Lecture July Java Server Pages Java Server Pages (JSPs) provide a way to separate the generation of dynamic content (java)
JSP Architecture Outline  Model 1 Architecture  Model 2 Architecture.
CGS – 4854 Summer 2012 Web Site Construction and Management Instructor: Francisco R. Ortega Chapter 2.
Web Server Programming 1. Nuts and Bolts. Premises of Course Provides general introduction, no in-depth training Assumes some HTML knowledge Assumes some.
CGS – 4854 Summer 2012 Web Site Construction and Management Instructor: Francisco R. Ortega Chapter 3 Part 1.
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:
J2EE training: 1 Course Material Usage Rules PowerPoint slides for use only in full-semester, for-credit courses at degree-granting.
CS320 Web and Internet Programming Java Beans and Expression Language (EL) Chengyu Sun California State University, Los Angeles.
J2EE training: 1 Course Material Usage Rules PowerPoint slides for use only in full-semester, for-credit courses at degree-granting.
CSC 2720 Building Web Applications JavaServer Pages (JSP) The Basics.
Copyright © 2002 ProsoftTraining. All rights reserved. JavaServer Pages.
Java Server Pages (JSP)
CSC 2720 Building Web Applications Frameworks for Building Web Applications.
Server-side Programming The combination of –HTML –JavaScript –DOM is sometimes referred to as Dynamic HTML (DHTML) Web pages that include scripting are.
Fall 2007cs4201 Advanced Java Programming Umar Kalim Dept. of Communication Systems Engineering
CSC 2720 Building Web Applications JavaServer Pages (JSP) JSP Directives and Action Elements.
Copyright © 2002 ProsoftTraining. All rights reserved. Java Servlets.
Fall 2007cs4201 Advanced Java Programming Umar Kalim Dept. of Communication Systems Engineering
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.
Slides © Marty Hall, book © Sun Microsystems Press 1 Using JavaBeans with JSP Core Servlets & JSP book:
© 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.
©SoftMoore ConsultingSlide 1 Filters. Filters can be used in a web application to intercept, examine, and possibly transform requests or responses associated.
COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 3 1COMP9321, 15s2, Week.
J2EE T ECHNOLOGIES These are the technologies required to build large scale distributed applications, can be divided into – Component Technologies eg.
Vakgroep Informatietechnologie – Onderzoeksgroep (naam) Web Centric Design of Distributed Software.
©SoftMoore ConsultingSlide 1 Overview of Servlets and JavaServer Pages (JSP)
Session Tracking Parts of this presentation was provided by SSE.
SKT-SSU IT Training Center Servlet and JSP. Chapter Eleven: Invoking Java Code with JSP Scripting Elements.
USING JAVABEANS COMPONENT IN JSP DOCUMENTS. References Marty Hall. Core Servlet and Java Server Page. Sun Micro System. Prentice Hall PTR; 1 edition 2000.
INVOKING JAVA CODE WITH JSP SCRIPTING ELEMENTS. Creating Template Text A large percentage of your JSP document consists of static text (usually HTML),
Introduction To HTML Dr. Magdi AMER. HTML elements.
 Java Server Pages (JSP) By Offir Golan. What is JSP?  A technology that allows for the creation of dynamically generated web pages based on HTML, XML,
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.
Chapter 14 Using JavaBeans Components in JSP Documents.
Bayu Priyambadha, S.Kom. Static content  Web Server delivers contents of a file (html) 1. Browser sends request to Web Server 3. Web Server sends HTML.
CS320 Web and Internet Programming Web Application and MVC Chengyu Sun California State University, Los Angeles.
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.
Introduction to Server-Side Web Development Introduction to Server-Side Web Development Introduction to Server-Side Web JavaBeans; basic concepts and syntax.
Enterprise Java v050228MVC1 Model, View, Controller Web Architecture.
Speaker Name Speaker Title Speaker Title Oracle Corporation Olivier Le Diouris Principal Product Manager Oracle Corporation Building Servlet and JSP Applications.
Java Servlets By: Tejashri Udavant..
Java Server Pages By: Tejashri Udavant..
Engineering the Java Web Application (MVC)
Introduction to Servlets
Scope and State Handling in Java Server Pages
Presentation transcript:

 Obtaining a RequestDispatcher Forwarding requests from servlets to dynamic resources  Forwarding requests from servlets to static resources  Using servlets to set up beans for use by JSP pages  An on-line travel agency combining servlets and JSP  Including JSP output in servlets  A servlet that shows the raw HTML output of JSP pages  Using jsp:forward to forward requests from JSP pages NAME: CHAUHAN ARPIT S ENROLLMENT NO:

 Uses of JSP Constructs Uses of JSP Constructs  Why Combine Servlets & JSP? Why Combine Servlets & JSP?  Possibilities for Handling a Single Request Possibilities for Handling a Single Request  MVC Misconceptions MVC Misconceptions  Implementing MVC with RequestDispatcher Implementing MVC with RequestDispatcher  Request Forwarding Example Request Forwarding Example  jsp:useBean in MVC vs in Standalone JSP Pages jsp:useBean in MVC vs in Standalone JSP Pages  Reminder: jsp:useBean Scope Alternatives Reminder: jsp:useBean Scope Alternatives  Request-Based Data Sharing Request-Based Data Sharing  Session-Based Data Sharing Session-Based Data Sharing  Session-Based Data Sharing: Variation Session-Based Data Sharing: Variation  Relative URLs in JSP Pages Relative URLs in JSP Pages  Comparing Data-Sharing Approaches: Request Comparing Data-Sharing Approaches: Request  Request-Based Sharing: Bean Request-Based Sharing: Bean  Request-Based Sharing: JSP Request-Based Sharing: JSP  Request-Based Sharing: Results Request-Based Sharing: Results  Including Pages Instead of Forwarding to Them Including Pages Instead of Forwarding to Them  Summary Summary  Questions? Questions?

Simple Application Complex Application  Scripting elements calling servletcode directly Scripting elements calling servlet code indirectly (by means of utility classes)  Beans Servlet/JSP combo (MVC) MVC with JSP expression language Custom tags

 Typical picture: use JSP to make it easier to develop and maintain the HTML content – For simple dynamic code, call servlet code from scripting elements – For slightly more complex applications, use custom  classes called from scripting elements – For moderately complex applications, use beans and custom tags But, that's not enough – For complex processing, starting with JSP is awkward – Despite the ease of separating the real code into separate classes, beans, and custom tags, the assumption behind JSP is that a single page gives a single basic look

 Servlet only – Output is a binary type. E.g.: an image – No output. E.g.: you are doing forwarding or redirection as in Search Engine example. – Format/layout of page is highly variable. E.g.: portal.  JSP only – Output is mostly character data. E.g.: HTML – Format/layout mostly fixed.  Combination – A single request will result in multiple substantially differentlooking results. – Complicated data processing, but relatively fixed layout.  These apply to a single request – You still use both servlets and JSP within your overall application.

 An elaborate framework is necessary – Frameworks are sometimes useful Struts JavaServer Faces (JSF) – They are not required! Implementing MVC with the builtin RequestDispatcher works very well for most simple and moderately complex Applications  MVC totally changes your overall system design – You can use MVC for individual requests – Think of it as the MVC approach, not the MVC architecture Also called the Model 2 approach

 Define beans to represent the data Use a servlet to handle requests – Servlet reads request parameters, checks for missing and malformed data, etc.  Populate the beans – The servlet invokes business logic (application- specific code) or data-access code to obtain the results. Results are placed in the beans that were defined in step 1.  Store the bean in the request, session, or servlet context – The servlet calls setAttribute on the request, session, or servlet context objects to store a reference to the beans that represent the results of the request

 Forward the request to a JSP page. – The servlet determines which JSP page is appropriate to the situation and uses the forward method of RequestDispatcher to transfer control to that page.  Extract the data from the beans. – The JSP page accesses beans with jsp:useBean and a scope matching the location of step 4. The page then uses jsp:getProperty to output the bean properties. – The JSP page does not create or modify the bean; it merely extracts and displays data that the servlet created.

public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String operation = request.getParameter("operation"); if (operation == null) { operation = "unknown"; } String address; if (operation.equals("order")) { address = "/WEB-INF/Order.jsp"; } else if (operation.equals("cancel")) { address = "/WEB-INF/Cancel.jsp"; } else { address = "/WEB-INF/UnknownOperation.jsp"; } RequestDispatcher dispatcher = request.getRequestDispatcher(address); dispatcher.forward(request, response);

 The JSP page should not create the objects – The servlet, not the JSP page, should create all the data objects. So, to guarantee that the JSP page will not create objects, you should use instead of  The JSP page should not modify the objects – So, you should use jsp:getProperty but not jsp:setProperty

 request –  session –  application –  page – or just – This scope is not used in MVC (Model 2) architecture

 Servlet ValueObject value = new ValueObject(...); request.setAttribute("key", value); RequestDispatcher dispatcher = request.getRequestDispatcher ("/WEB-INF/SomePage.jsp"); dispatcher.forward(request, response);  JSP <jsp:useBean id="key" type="somePackage.ValueObject" scope="request" />

 Servlet ValueObject value = new ValueObject(...); HttpSession session = request.getSession(); session.setAttribute("key", value); RequestDispatcher dispatcher = request.getRequestDispatcher ("/WEB- INF/SomePage.jsp"); dispatcher.forward(request, response);  JSP <jsp:useBean id="key" type="somePackage.ValueObject" scope="session" /> 14 JSP/servlet training:

 Use response.sendRedirect instead of RequestDispatcher.forward  Distinctions: with sendRedirect: – User sees JSP URL (user sees only servlet URL with RequestDispatcher.forward) – Two round trips to client (only one with forward)  Advantage of sendRedirect – User can visit JSP page separately – User can bookmark JSP page  Disadvantage of sendRedirect – Since user can visit JSP page without going through servlet first, JSP data might not be available  So, JSP page needs code to detect this situation

 Servlet synchronized(this) { ValueObject value = new ValueObject(...); getServletContext().setAttribute("key", value); RequestDispatcher dispatcher = request.getRequestDispatcher ("/WEB- INF/SomePage.jsp"); dispatcher.forward(request, response); }  JSP <jsp:useBean id="key" type="somePackage.ValueObject" scope="application" /> 16 JSP/servlet training:

 Issue: – Forwarding with a request dispatcher is transparent to the client. Original URL is only URL browser knows about.  Why does this matter? – What will browser do with tags like the following: <LINK REL=STYLESHEET HREF="JSP-Styles.css" TYPE="text/css"> … – Answer: browser treats them as relative to servlet URL  Simplest solution: – Use URLs that begin with a slash

 Goal – Display a random number to the user  Type of sharing – Each request should result in a new number, so request based sharing is appropriate.

package coreservlets; public class NumberBean { private double num = 0; public NumberBean(double number) { setNumber(number); } public double getNumber() { return(num); } public void setNumber(double number) { num = number; }

public class RandomNumberServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { NumberBean bean = new NumberBean(Math.random()); request.setAttribute("randomNum", bean); String address ="/WEB-INF/mvc- sharing/RandomNum.jsp"; RequestDispatcher dispatcher = request.getRequestDispatcher(address); dispatcher.forward(request, response); }

<jsp:useBean id="randomNum" type="coreservlets.NumberBean" scope="request" /> Random Number: <jsp:getProperty name="randomNum" property="number" />

 With the forward method of RequestDispatcher: – Control is permanently transferred to new page – Original page cannot generate any output  With the include method of RequestDispatcher: – Control is temporarily transferred to new page – Original page can generate output before and after the included page – Original servlet does not see the output of the included page (for this, see later topic on servlet/JSP filters) – Useful for portals: JSP presents pieces, but pieces arranged in different orders for different users

response.setContentType("text/html"); String firstTable, secondTable, thirdTable; if (someCondition) { firstTable = "/WEB-INF/Sports-Scores.jsp"; secondTable = "/WEB-INF/Stock-Prices.jsp"; thirdTable = "/WEB-INF/Weather.jsp"; } else if (...) {... } RequestDispatcher dispatcher = request.getRequestDispatcher("/WEB-INF/Header.jsp"); dispatcher.include(request, response); dispatcher =request.getRequestDispatcher(firstTable); dispatcher.include(request, response); dispatcher =request.getRequestDispatcher(secondTable); dispatcher.include(request, response); dispatcher =request.getRequestDispatcher(thirdTable); dispatcher.include(request, response); dispatcher =request.getRequestDispatcher("/WEB-INF/Footer.jsp"); dispatcher.include(request, response);

 Use MVC (Model 2) approach when: – One submission will result in more than one basic look – Several pages have substantial common processing.  Architecture – A servlet answers the original request – Servlet does the real processing & stores results in beans  Beans stored in HttpServletRequest, HttpSession, or ServletContext – Servlet forwards to JSP page via forward method of RequestDispatcher – JSP page reads data from beans by means of jsp:useBean with appropriate scope (request, session, or application)