Chapter 11 © 2005 by Addison Wesley Longman, Inc. 1 11.1 Overview of Servlets - A servlet is a compiled Java class - Servlets are executed on the server.

Slides:



Advertisements
Similar presentations
Chapter 6 Server-side Programming: Java Servlets
Advertisements

Servlets & JSPs - Sharad Ballepu.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 10 Servlets and Java Server Pages.
JSP and Servelets.
CGI programming. Common Gateway Interface interface between web server and other programs (cgi scripts) information passed as environment variables passed.
Cookie in a servlet. Cookies are small bits of textual information that a Web server sends to a browser and that the browser returns unchanged when visiting.
1 Servlets Based on Notes by Dave Hollinger & Ethan Cerami Also, the Online Java Tutorial by Sun.
Java Server 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.
Servlets and a little bit of Web Services Russell Beale.
WEB1P servintro1 Introduction to servlets and JSP Dr Jim Briggs.
Chapter 11 © 2001 by Addison Wesley Longman, Inc. 1 Chapter 11 Sebesta: Programming the World Wide Web.
DT211/3 Internet Application Development
18-Jun-15 JSP Java Server Pages Reference: Tutorial/Servlet-Tutorial-JSP.html.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 34 Servlets.
JSP Java Server Pages Reference:
DT228/3 Web Development JSP: Directives and Scripting elements.
Chapter 11 ASP.NET JavaScript, Third Edition. 2 Objectives Learn about client/server architecture Study server-side scripting Create ASP.NET applications.
Web programming for project students Dr Jim Briggs.
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.
Servlets. Our Project 3-tier application Develop our own multi-threaded server Socket level communication.
SE-2840 Dr. Mark L. Hornick1 Java Servlet-based web apps Servlet Architecture.
CSCI 6962: Server-side Design and Programming History and Background.
Chapter 10 Servlets and Java Server Pages. A servlet is a Java class designed to be run in the context of a special servlet container An instance of the.
Gayle J Yaverbaum, PhD Professor of Information Systems Penn State Harrisburg.
Java Server Pages B.Ramamurthy. Topics for Discussion 8/20/20152 Inheritance and Polymorphism Develop an example for inheritance and polymorphism JSP.
Overview of JSP Technology. The need of JSP With servlets, it is easy to – Read form data – Read HTTP request headers – Set HTTP status codes and response.
1 CIS336 Website design, implementation and management (also Semester 2 of CIS219, CIS221 and IT226) Lecture 9 JavaServer Pages (JSP) (Based on Møller.
FALL 2005CSI 4118 – UNIVERSITY OF OTTAWA1 Part 4 Web technologies: HTTP, CGI, PHP,Java applets)
Java Servelets. What Is a Servlet? A servlet is a Java programming language class used to extend the capabilities of servers that host applications accessed.
Chapter 11 © 2010 by Addison Wesley Longman, Inc Introduction to Servlets - A servlet is a Java object that responds to HTTP requests and is executed.
Chapter 11 © 2009 by Addison Wesley Longman, Inc Introduction to Servlets - A servlet is a compiled Java class - Servlets are executed on the server.
Chapter 11 © 2014 by Pearson Education Introduction to Servlets - A servlet is a Java object that responds to HTTP requests and is executed on a.
JSP Java Server Pages Softsmith Infotech.
Java support for WWW Babak Esfandiari (sources: Qusay Mahmoud, Roger Impey, textbook)
Introduction to JavaServer Pages (JSP) Slides from Dr. Mark Llewellyn.
COMP 321 Week 7. Overview HTML and HTTP Basics Dynamic Web Content ServletsMVC Tomcat in Eclipse Demonstration Lab 7-1 Introduction.
CMPUT 391 – Database Management Systems Department of Computing Science University of Alberta CMPUT 391 Database Management Systems Web based Applications,
Web Server Programming 1. Nuts and Bolts. Premises of Course Provides general introduction, no in-depth training Assumes some HTML knowledge Assumes some.
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 3 Servlet Basics. 1.Recall the Servlet Role 2.Basic Servlet Structure 3.A simple servlet that generates plain text 4.A servlet that generates.
Chapter 6 Server-side Programming: Java Servlets
Chapter 11 © 2003 by Addison Wesley Longman, Inc. 1 Chapter 11 Introduction to Web Servers and Servlets.
Introduction to Server-Side Web Development Introduction to Server-Side Web Development Session II: Introduction to Server-Side Web Development with Servlets.
L.MARIA MICHAEL VISUWASAM UNIT-4
1 Java Servlets l Servlets : programs that run within the context of a server, analogous to applets that run within the context of a browser. l Used to.
Middleware 3/29/2001 Kang, Seungwoo Lee, Jinwon. Description of Topics 1. CGI, Servlets, JSPs 2. Sessions/Cookies 3. Database Connection(JDBC, Connection.
Servlets.
CSI 3125, Preliminaries, page 1 SERVLET. CSI 3125, Preliminaries, page 2 SERVLET A servlet is a server-side software program, Responds oriented other.
1 Introduction to Servlets. Topics Web Applications and the Java Server. HTTP protocol. Servlets 2.
JS (Java Servlets). Internet evolution [1] The internet Internet started of as a static content dispersal and delivery mechanism, where files residing.
Basic JSP Celsina Bignoli Problems with Servlets Servlets contain –request processing, –business logic –response generation all lumped.
CSI 3125, Preliminaries, page 1 SERVLET. CSI 3125, Preliminaries, page 2 SERVLET A servlet is a server-side software program, written in Java code, that.
COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 3 1COMP9321, 15s2, Week.
UMass Lowell Computer Science Java and Distributed Computing Prof. Karen Daniels Fall, 2000 Lecture 21 Java Servlets Wed. 11/22/00 based on material.
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.
Java Programming: Advanced Topics 1 Building Web Applications Chapter 13.
Chapter 4 Request and Response. Servlets are controlled by the container.
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.
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.
Java Servlets References: Karen Anewalt, Mary Washington College.
11.1 Introduction to Servlets
11.1 Web Server Operation - Client-server systems
Servlet Fudamentals.
Chapter 26 Servlets.
Servlet APIs Every servlet must implement javax.servlet.Servlet interface Most servlets implement the interface by extending one of these classes javax.servlet.GenericServlet.
Java Chapter 7 (Estifanos Tilahun Mihret--Tech with Estif)
Presentation transcript:

Chapter 11 © 2005 by Addison Wesley Longman, Inc Overview of Servlets - A servlet is a compiled Java class - Servlets are executed on the server system under the control of the Web server - Servlets are managed by the servlet container, or servlet engine - Servlets are called through HTML - Servlets receive requests and return responses, both of which are supported by the HTTP protocol - When the Web server receives a request that is for a servlet, the request is passed to the servlet container - The container makes sure the servlet is loaded and calls it - The servlet call has two parameter objects, one with the request and one for the response - When the servlet is finished, the container reinitializes itself and returns control to the Web server

Chapter 11 © 2005 by Addison Wesley Longman, Inc Overview of Servlets (continued) - Servlets are used 1) as alternatives to CGI, and 2) as alternatives to Apache modules - Servlet Advantages: - Can be faster than CGI, because they are run in the server process - Have direct access to Java APIs - Because they continue to run (unlike CGI programs), they can save state information - Have the usual benefits of being written in Java (platform independence, ease of programming)

Chapter 11 © 2005 by Addison Wesley Longman, Inc Servlet Details - All servlets are classes that either implement the Servlet interface or extend a class that implements the Servlet interface - The Servlet interface provides the interfaces for the methods that manage servlets and their interactions with clients - The Servlet interface declares three methods that are called by the servlet container (the life-cycle methods) - init - initializes the servlet and prepares it to respond to client requests - service - controls how the servlet responds to requests - destroy - takes the servlet out of service

Chapter 11 © 2005 by Addison Wesley Longman, Inc Servlet Details (continued) - The Servlet interface declares two methods that are used by the servlet: - getServletConfig - to get initialization and startup parameters for itself - getServletInfo - to allow the servlet to return info about itself (author, version #, etc.) to clients - Most user-written servlet classes are extensions to HttpServlet (which is an extension of GenericServlet, which implements the Servlet Interface) - Two other necessary interfaces: - ServletResponse – to encapsulate the communications, client to server - ServletRequest – to encapsulate the communications, server to client - Provides servlet access to ServletOutputStream

Chapter 11 © 2005 by Addison Wesley Longman, Inc Servlet Details (continued) - HttpServlet – an abstract class - Extends GenericServlet - Every subclass of HttpServlet MUST override at least one of the methods of HttpServlet doGet * doPost * doPut * doDelete * init destroy getServletInfo * Called by the server

Chapter 11 © 2005 by Addison Wesley Longman, Inc Servlet Details (continued) - The protocol of doGet is: protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, java.io.IOException - ServletException is thrown if the GET request could not be handled - The protocol of doPost is similar - Servlet output – HTML 1. Use the setContentType method of the response object to set the content type to text/html response.setContentType("text/html"); 2. Create a PrintWriter object with the getWriter method of the response object PrintWriter servletOut = response.getWriter(); - Example – Respond to a GET request with no data  Show tst_greet.html and Greeting.java

Chapter 11 © 2005 by Addison Wesley Longman, Inc A Survey Example --> Show conelec2.html and its display (w/browser) - The servlet: - To accumulate voting totals, it must write a file on the server - The file will be read and written as an object (the array of vote totals) using ObjectInputStream - An object of this class is created with its constructor, passing an object of class FileInputStream, whose constructor is called with the file variable name as a parameter ObjectInputStream indat = new ObjectInputStream( new FileInputStream( File_variable_name )); - On input, the contents of the file will be cast to integer array

Chapter 11 © 2005 by Addison Wesley Longman, Inc A Survey Example (continued) - The servlet must access the form data from the client - This is done with the getParameter method of the request object, passing a literal string with the name of the form element e.g., if the form has an element named zip zip = request.getParameter("zip"); - If an element has no value and its value is requested by getParameter, the returned value is null - If a form value is not a string, the returned string must be parsed to get the value - e.g., suppose the value is an integer literal - A string that contains an integer literal can be converted to an integer with the parseInt method of the wrapper class for int, Integer price = Integer.parseInt( request.getParameter("price"));

Chapter 11 © 2005 by Addison Wesley Longman, Inc A Survey Example (continued) - The file structure is an array of 14 integers, 7 votes for females and 7 votes for males - Servlet actions: If the votes data array exists read the votes array from the data file else create the votes array Get the gender form value Get the form value for the new vote and convert it to an integer Add the vote to the votes array Write the votes array to the votes file Produce the return HTML document that shows the current results of the survey - Every voter will get the current totals --> Show the servlet, Survey.java --> Show Figure 11.4

Chapter 11 © 2005 by Addison Wesley Longman, Inc Storing Information about Clients - A session is the collection of all of the requests made by a particular browser from the time the browser is started until the user exits the browser - The HTTP protocol is stateless - But, there are several reasons why it is useful for the server to relate a request to a session - Shopping carts for many different simultaneous customers - Customer profiling for advertising - Customized interfaces for specific clients - Approaches to storing client information: - Store it on the server – too much to store! - Store it on the client machine - this works - Cookies - A cookie is an object sent by the server to the client

Chapter 11 © 2005 by Addison Wesley Longman, Inc Storing Information about Clients (continued) - Every HTTP communication between the browser and the server includes information in its header about the message - At the time a cookie is created, it is given a lifetime - Every time the browser sends a request to the server that created the cookie, while the cookie is still alive, the cookie is included - A browser can be set to reject all cookies - A cookie object has data members and methods - Data members to store lifetime, name, and a value (the cookies’ value) - Methods: setComment, setMaxAge, setValue, getMaxAge, getName, and getValue - Cookies are created with the Cookie constructor Cookie newCookie = new Cookie(gender, vote);

Chapter 11 © 2005 by Addison Wesley Longman, Inc Storing Information about Clients (continued) - By default, a cookie’s lifetime is the current session - If you want it to be longer, use setMaxAge - A cookie is attached to the response with addCookie - Order in which the response must be built: 1. Add cookies 2. Set content type 3. Get response output stream 4. Place info in the response - The browser does nothing with cookies, other than storing them and passing them back - A servlet gets a cookie from the browser with the getCookies method Cookie theCookies []; … theCookies = request.getCookies(); - A Vote Counting Example  Show ballot.html and display

Chapter 11 © 2005 by Addison Wesley Longman, Inc Storing Information about Clients (continued) - Vote counting servlet activities: - See if a vote was cast - Make sure the voter hasn’t voted before - Tally real votes and give the client the totals - Store votes in a file  Show the VoteCounter algorithm  Show VoteCounter - Session Tracking - An alternative to cookies - Use the HttpSession object, which can store a list of names and values

Chapter 11 © 2005 by Addison Wesley Longman, Inc Storing Information about Clients (continued) - Create a Session object - Put value in the session object with putValue mySession.putValue("iVoted", "true"); - A session can be killed with the invalidate method - A value can be removed with removeValue - A value can be gotten with getValue( name ) - All names of values can be gotten with getValueNames  SHOW VoteCounter2.java

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages - Motivation - Servlets require mixing of XHTML into Java - JSP mixes code into XHTML, although the code can be in a separate file - Servlets are more appropriate when most of the document to be returned is dynamically generated - JSP is more appropriate when most of the document to be returned is predefined - JSP Documents - Are converted to servlets - Consist of four different kinds of elements: 1. Directives – messages to the JSP container 2. XHTML or XML markup – called template text - The static part of the document 3. Action elements 4. Scriptlets

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages (continued) - Action elements - Dynamically create content - The output of a JSP document is a combination of its template text and the output of its action elements - Appear in three different categories: 1. Standard – defined by the JSP spec; limited scope and value 2. Custom – defined by an organization for their particular needs 3. JSP Standard Tag Library (JSTL) – created to meet the frequent needs not met by the standard action elements - Consists of five libraries - Differences between JSTL action elements and a programming language: 1. The syntax is different 2. Action elements are much easier to use than a programming language

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages (continued) - Directives - Tags that use delimiters - The most common directives are page and taglib - page is used to specify attributes, such as contentType - taglib is used to specify a library of action elements taglib prefix = ″c″ uri = ″ %> - Scriptlets - Java code scripts that are embedded in JSP documents - Scriptlets are copied into the output of a JSP document

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages (continued) - Scriptlets (continued) - Four kinds of things that can appear in a scriptlet: 1. Comments (in Java form) 2. Scriptlet code (Java code in a tag) 3. Expressions 4. Declarations (not discussed here) - Expressions are used to insert values into the response  SHOW tempconvert0.html and tempconvert0.jsp - These can be combined - Need to be able to determine which call it is - One way: use getParameter and test against null  SHOW tempconvert1.jsp

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages (continued) - Scriptlets (continued) - In JSP 1.1, all dynamic parts were created with scriptlets, but that puts lots of Java in documents – not better than servlets - Since the Expression Language and JSTL were added to JSP, scriptlets are no longer needed - JSP Expression Language - Similar to the expressions of JavaScript - For example, arithmetic between a string and a number - Has no control statements - Syntax: ${ expression } - Consist of literals, arithmetic operators, implicit variables (for form data), and normal variables - EL is used to set the attribute values of action elements (always strings)

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages (continued) - JSP Expression Language (continued) - EL data often comes from forms - The implicit variable, param, stores a collection of all form data values ${param.address} - If the form data name has special characters: ${param[′cust-address′]} - Another implicit variable: pageContext - Has lots of info about the request e.g., contentType, contentLength, remoteAddr - Output is usually created with out  SHOW tempconvert2.html and tempconvert2.jsp

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages (continued) - JSTL Control Action Elements - Flow control elements – the Core library of JSTL - Selection – if element - Often used to choose whether it is the first call of a combined document <c:if test = ″${pageContext.request.method == ′POST′}″> …  SHOW tempconvert3.jsp - Loops – forEach element (an iterator) - Often used for checkboxes and menus to determine the values of the parts - The parmValues implicit variable has an array of the values in checkboxes and menus

Chapter 11 © 2005 by Addison Wesley Longman, Inc Java Server Pages (continued) - JSTL Control Action Elements (continued) - forEach has two attributes, items and var, which get the specific item and its value - If we had a collection of checkboxes named topping <c:forEach items = ″${paramValues.topping}″ var = ″top″> - forEach can also be used for counting loops … - The choose element – to build switch constructs - choose, which has no attributes, uses two other elements, when and otherwise - when has the test attribute, which has the control expression - Radio buttons require a switch construct  SHOW testradio.jsp