SlideShare a Scribd company logo
The Servlet Technology
Inside Servlets
Writing Servlet Applications
What Is a Servlet?
“A servlet is a server-side Java replacement for CGI
scripts and programs. Servlets are much faster and
more efficient than CGI and they let you unleash
the full power of Java on your web server, including
back-end connections to databases and object
repositories through JDBC, RMI, and CORBA”
– Atlanta Java Users Group (http://www.ajug.org/meetings/jun98.html)

2
Ways to use Servlet
A simple way:
Servlet can process data which was POSTed
over HTTPS using an HTML FORM, say, an
order-entry, and applying the business logic used
to update a company's order database.
A simple servlet
Some other uses:
Since servlets handle multiple requests concurrently, the
requests can be synchronized with each other to support
collaborative applications such as on-line conferencing.
One could define a community of active agents, which
share work among each other. The code for each agent
would be loaded as a servlet, and the agents would pass
data to each other.
One servlet could forward requests other servers. This
technique can balance load among several servers which
mirror the same content.
Server-side Java for the web
a servlet is a Java program which outputs an html page; it is a
server-side technology
HTTP Request
HTTP Response
browser

Server-side Request
Response Header +
Html file
web server

Java Servlet
Java Server Page

servlet container
(engine) - Tomcat
Servlet Structure
Java Servlet Objects on Server Side
Managed by Servlet Container
Loads/unloads servlets
Directs requests to servlets
Request → doGet()

Each request is run as its own thread
A servlet Is a Server-side Java Class
Which Responds to Requests

doGet()

doPost()
service()
doPut()

doDelete()

8
Servlet Basics
Packages:
javax.servlet, javax.servlet.http
Runs in servlet container such as Tomcat
Tomcat 4.x for Servlet 2.3 API
Tomcat 5.x for Servlet 2.4 API

Servlet lifecycle
Persistent (remains in memory between requests)
Startup overhead occurrs only once
init() method runs at first request
service() method for each request
destroy() method when server shuts down
Web App with Servlets

GET …

Servlet

HEADERS
BODY

doGet()
…
…

Servlet Container
Life-cycle of a servlet
init()
service()
destroy()
It can sit there simply servicing requests with no
start up overhead, no code compilation. It is
FAST
It may be stateless – minimal memory

11
Client - Server - DB
5 Simple Steps for Java Servlets
1. Subclass off HttpServlet
2. Override doGet(....) method
3. HttpServletRequest
getParameter("paramName")

4. HttpServletResponse
set Content Type
get PrintWriter
send text to client via PrintWriter

5. Don't use instance variables
HTTP: Request &
Response
Client sends HTTP request (method) telling
server the type of action it wants performed
GET method
POST method

Server sends response

14
Http: Get & Post

GET method
For getting information from server
Can include query string, sequence with additional
information for GET, appended to URL
e.g. Http://www.whoami.Com/Servlet/search?Name=Inigo&ID=1223344

15
Http: Get & Post

POST method
designed to give information to server
all information (unlimited length) passed as part of
request body
• invisible to user
• cannot be reloaded (by design)

16
Interaction with Client
HttpServletRequest
String getParameter(String)
Enumeration getParameters(String[])

HttpServletResponse
Writer getWriter()
ServletOutputStream getOutputStream()

Handling GET and POST Requests
HttpServlet
Implements Servlet
Receives requests and sends responses to a web
browser
Methods to handle different types of HTTP requests:
handles GET requests
doPost() handles POST requests
doPut() handles PUT requests
doDelete() handles DELETE requests
doGet()

10/12/11

G53ELC: Servlets

18
HttpServlet Request Handling

19
Handling HttpServlet
Requests
service() method not usually overridden
doXXX() methods handle the different request types
Needs to be thread-safe or must run on a STM
(SingleThreadModel) Servlet Engine
multiple requests can be handled at the same time

20
Simple Counter Example
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class SimpleCounter extends HttpServlet
{
int count = 0;
public void doGet(HttpServletRequest req, HttpServletResponse res) throws
ServletException, IOException
{
res.setContentType(“text/plain”);
PrintWriter out = res.getWriter();
count++;
out.println(“This servlet has been accessed “ + count +
“ times since loading”);
}
}

21
Multithreading solutions
Synchronize the doGet() method
public synchronized void doGet(HttpServletRequest req,
HttpServletResponse res)

servlet can’t handle more than one GET request at a
time

Synchronize the critical section
PrintWriter out = res.getWriter();
synchronized(this)
{
count++;
out.println(“This servlet has been accessed “ + count + “ times
since loading”);
}

22
Forms and Interaction
<form method=get action=“/servlet/MyServlet”>
GET method appends parameters to action URL:
/servlet/MyServlet?userid=Jeff&pass=1234
This is called a query string (starting with ?)

Username: <input type=text name=“userid” size=20>
Password: <input type=password name=“pass”
size=20>
<input type=submit value=“Login”>
Assignment 2:
Get Stock Price
Lecture 2
RequestHeaderExample.java
import
import
import
import

java.io.*;
java.util.*;
javax.servlet.*;
javax.servlet.http.*;

public class RequestHeaderExample extends HttpServlet {
public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws IOException, ServletException
{
response.setContentType("text/html");
PrintWriter out = response.getWriter();
Enumeration e = request.getHeaderNames();
while (e.hasMoreElements()) {
String name = (String)e.nextElement();
String value = request.getHeader(headerName);
out.println(name + “ = “ + value );
}
}
}
Accessing Request Components
getParameter("param1")
getCookies() => Cookie[]
getContentLength()
getContentType()
getHeaderNames()
getMethod()
Environment Variables
JavaServlets do not require you to use the
clunky environment variables used in CGI
Individual functions:
PATH_INFO
REMOTE_HOST
QUERY_STRING
…

req.getPathInfo()
req.getRemoteHost()
req.getQueryString()
Setting Response Components
Set status first!
setStatus(int)

HttpServletResponse.SC_OK...
sendError(int, String)
sendRedirect(String url)
Setting Response Components
Set headers
setHeader(…)
setContentType(“text/html”)

Output body
PrintWriter out = response.getWriter();
out.println("<HTML><HEAD>...")
 Install Web Server on your machine such as Tomcat, Appache, ..
 Create Home Page as CV which should contains:
 Your Name as title
 You Image in the right hand side
 Your previous courses listed in Table

 Another linked Page for Accepting your friends which should
contains form to accept your friends information:








Name (Text Field)
Birth of Date (Text Field)
Country ( Drop Down List)
E-mail ( Text Field)
Mobile ( Text Field)
Gender (Radio Button with Male or Female)
Save request of friends into file

31

More Related Content

PPT
Java - Servlet - Mazenet Solution
PPT
PDF
Servlet sessions
PPTX
Servlets
DOCX
Servlet
PPT
Java servlet life cycle - methods ppt
PPT
Java servlets
PPT
An Introduction To Java Web Technology
Java - Servlet - Mazenet Solution
Servlet sessions
Servlets
Servlet
Java servlet life cycle - methods ppt
Java servlets
An Introduction To Java Web Technology

What's hot (20)

PPT
Request dispatching in servlet
PPT
Servlet life cycle
PPTX
Servletarchitecture,lifecycle,get,post
PPT
Programming Server side with Sevlet
PPT
JAVA Servlets
PPTX
Java web application development
PPTX
Java Servlets
PPTX
Chapter 3 servlet & jsp
PDF
Lecture 3: Servlets - Session Management
PPTX
Dropwizard Internals
PPT
Servlet ppt by vikas jagtap
PDF
Spring4 whats up doc?
PPTX
Servlet in java , java servlet , servlet servlet and CGI, API
PPTX
PPTX
ODP
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
PDF
Lecture 7 Web Services JAX-WS & JAX-RS
PPT
Web Tech Java Servlet Update1
PDF
Java Web Programming [9/9] : Web Application Security
PPTX
01 session tracking
Request dispatching in servlet
Servlet life cycle
Servletarchitecture,lifecycle,get,post
Programming Server side with Sevlet
JAVA Servlets
Java web application development
Java Servlets
Chapter 3 servlet & jsp
Lecture 3: Servlets - Session Management
Dropwizard Internals
Servlet ppt by vikas jagtap
Spring4 whats up doc?
Servlet in java , java servlet , servlet servlet and CGI, API
Server Sent Events, Async Servlet, Web Sockets and JSON; born to work together!
Lecture 7 Web Services JAX-WS & JAX-RS
Web Tech Java Servlet Update1
Java Web Programming [9/9] : Web Application Security
01 session tracking
Ad

Similar to Lecture 2 (20)

PPTX
SERVLETS (2).pptxintroduction to servlet with all servlets
PPTX
PPTX
Java servlets
PPTX
java Servlet technology
PDF
Java Servlet Programming under Ubuntu Linux by Tushar B Kute
PPTX
Unitwwsbdsbsdbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb-4.pptx
PPTX
servlets sessions and cookies, jdbc connectivity
DOCX
TY.BSc.IT Java QB U3
PPT
Presentation on java servlets
PPTX
SERVLET in web technolgy engineering.pptx
PPTX
Wt unit 3
PPTX
Advance Java Programming (CM5I) 6.Servlet
PPTX
UNIT-3 Servlet
PPT
S E R V L E T S
PPTX
JAVA SERVLETS acts as a middle layer between a request coming from a web brow...
PPTX
Http Server Programming in JAVA - Handling http requests and responses
PDF
Java Web Programming [2/9] : Servlet Basic
PPTX
Session 26 - Servlets Part 2
PPTX
Java Servlet
SERVLETS (2).pptxintroduction to servlet with all servlets
Java servlets
java Servlet technology
Java Servlet Programming under Ubuntu Linux by Tushar B Kute
Unitwwsbdsbsdbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb-4.pptx
servlets sessions and cookies, jdbc connectivity
TY.BSc.IT Java QB U3
Presentation on java servlets
SERVLET in web technolgy engineering.pptx
Wt unit 3
Advance Java Programming (CM5I) 6.Servlet
UNIT-3 Servlet
S E R V L E T S
JAVA SERVLETS acts as a middle layer between a request coming from a web brow...
Http Server Programming in JAVA - Handling http requests and responses
Java Web Programming [2/9] : Servlet Basic
Session 26 - Servlets Part 2
Java Servlet
Ad

Recently uploaded (20)

PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
RMMM.pdf make it easy to upload and study
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
Cell Structure & Organelles in detailed.
PPTX
Cell Types and Its function , kingdom of life
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Institutional Correction lecture only . . .
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
TR - Agricultural Crops Production NC III.pdf
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
FourierSeries-QuestionsWithAnswers(Part-A).pdf
RMMM.pdf make it easy to upload and study
102 student loan defaulters named and shamed – Is someone you know on the list?
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Final Presentation General Medicine 03-08-2024.pptx
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Cell Structure & Organelles in detailed.
Cell Types and Its function , kingdom of life
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Pharma ospi slides which help in ospi learning
Institutional Correction lecture only . . .
Module 4: Burden of Disease Tutorial Slides S2 2025
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
human mycosis Human fungal infections are called human mycosis..pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
school management -TNTEU- B.Ed., Semester II Unit 1.pptx

Lecture 2

  • 1. The Servlet Technology Inside Servlets Writing Servlet Applications
  • 2. What Is a Servlet? “A servlet is a server-side Java replacement for CGI scripts and programs. Servlets are much faster and more efficient than CGI and they let you unleash the full power of Java on your web server, including back-end connections to databases and object repositories through JDBC, RMI, and CORBA” – Atlanta Java Users Group (http://www.ajug.org/meetings/jun98.html) 2
  • 3. Ways to use Servlet A simple way: Servlet can process data which was POSTed over HTTPS using an HTML FORM, say, an order-entry, and applying the business logic used to update a company's order database.
  • 5. Some other uses: Since servlets handle multiple requests concurrently, the requests can be synchronized with each other to support collaborative applications such as on-line conferencing. One could define a community of active agents, which share work among each other. The code for each agent would be loaded as a servlet, and the agents would pass data to each other. One servlet could forward requests other servers. This technique can balance load among several servers which mirror the same content.
  • 6. Server-side Java for the web a servlet is a Java program which outputs an html page; it is a server-side technology HTTP Request HTTP Response browser Server-side Request Response Header + Html file web server Java Servlet Java Server Page servlet container (engine) - Tomcat
  • 7. Servlet Structure Java Servlet Objects on Server Side Managed by Servlet Container Loads/unloads servlets Directs requests to servlets Request → doGet() Each request is run as its own thread
  • 8. A servlet Is a Server-side Java Class Which Responds to Requests doGet() doPost() service() doPut() doDelete() 8
  • 9. Servlet Basics Packages: javax.servlet, javax.servlet.http Runs in servlet container such as Tomcat Tomcat 4.x for Servlet 2.3 API Tomcat 5.x for Servlet 2.4 API Servlet lifecycle Persistent (remains in memory between requests) Startup overhead occurrs only once init() method runs at first request service() method for each request destroy() method when server shuts down
  • 10. Web App with Servlets GET … Servlet HEADERS BODY doGet() … … Servlet Container
  • 11. Life-cycle of a servlet init() service() destroy() It can sit there simply servicing requests with no start up overhead, no code compilation. It is FAST It may be stateless – minimal memory 11
  • 13. 5 Simple Steps for Java Servlets 1. Subclass off HttpServlet 2. Override doGet(....) method 3. HttpServletRequest getParameter("paramName") 4. HttpServletResponse set Content Type get PrintWriter send text to client via PrintWriter 5. Don't use instance variables
  • 14. HTTP: Request & Response Client sends HTTP request (method) telling server the type of action it wants performed GET method POST method Server sends response 14
  • 15. Http: Get & Post GET method For getting information from server Can include query string, sequence with additional information for GET, appended to URL e.g. Http://www.whoami.Com/Servlet/search?Name=Inigo&ID=1223344 15
  • 16. Http: Get & Post POST method designed to give information to server all information (unlimited length) passed as part of request body • invisible to user • cannot be reloaded (by design) 16
  • 17. Interaction with Client HttpServletRequest String getParameter(String) Enumeration getParameters(String[]) HttpServletResponse Writer getWriter() ServletOutputStream getOutputStream() Handling GET and POST Requests
  • 18. HttpServlet Implements Servlet Receives requests and sends responses to a web browser Methods to handle different types of HTTP requests: handles GET requests doPost() handles POST requests doPut() handles PUT requests doDelete() handles DELETE requests doGet() 10/12/11 G53ELC: Servlets 18
  • 20. Handling HttpServlet Requests service() method not usually overridden doXXX() methods handle the different request types Needs to be thread-safe or must run on a STM (SingleThreadModel) Servlet Engine multiple requests can be handled at the same time 20
  • 21. Simple Counter Example import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class SimpleCounter extends HttpServlet { int count = 0; public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { res.setContentType(“text/plain”); PrintWriter out = res.getWriter(); count++; out.println(“This servlet has been accessed “ + count + “ times since loading”); } } 21
  • 22. Multithreading solutions Synchronize the doGet() method public synchronized void doGet(HttpServletRequest req, HttpServletResponse res) servlet can’t handle more than one GET request at a time Synchronize the critical section PrintWriter out = res.getWriter(); synchronized(this) { count++; out.println(“This servlet has been accessed “ + count + “ times since loading”); } 22
  • 23. Forms and Interaction <form method=get action=“/servlet/MyServlet”> GET method appends parameters to action URL: /servlet/MyServlet?userid=Jeff&pass=1234 This is called a query string (starting with ?) Username: <input type=text name=“userid” size=20> Password: <input type=password name=“pass” size=20> <input type=submit value=“Login”>
  • 26. RequestHeaderExample.java import import import import java.io.*; java.util.*; javax.servlet.*; javax.servlet.http.*; public class RequestHeaderExample extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); Enumeration e = request.getHeaderNames(); while (e.hasMoreElements()) { String name = (String)e.nextElement(); String value = request.getHeader(headerName); out.println(name + “ = “ + value ); } } }
  • 27. Accessing Request Components getParameter("param1") getCookies() => Cookie[] getContentLength() getContentType() getHeaderNames() getMethod()
  • 28. Environment Variables JavaServlets do not require you to use the clunky environment variables used in CGI Individual functions: PATH_INFO REMOTE_HOST QUERY_STRING … req.getPathInfo() req.getRemoteHost() req.getQueryString()
  • 29. Setting Response Components Set status first! setStatus(int) HttpServletResponse.SC_OK... sendError(int, String) sendRedirect(String url)
  • 30. Setting Response Components Set headers setHeader(…) setContentType(“text/html”) Output body PrintWriter out = response.getWriter(); out.println("<HTML><HEAD>...")
  • 31.  Install Web Server on your machine such as Tomcat, Appache, ..  Create Home Page as CV which should contains:  Your Name as title  You Image in the right hand side  Your previous courses listed in Table  Another linked Page for Accepting your friends which should contains form to accept your friends information:        Name (Text Field) Birth of Date (Text Field) Country ( Drop Down List) E-mail ( Text Field) Mobile ( Text Field) Gender (Radio Button with Male or Female) Save request of friends into file 31