JSP & Servlets
1.0.0
1.0.0
  • Setting up
  • Pre-requisites
  • Servlet Part 1
  • Servlet Part 2
  • Understanding the servlet
  • Servlet XML Configuration
  • POST method and passing parameters
  • Passing more parameters
  • Understanding GET and POST
  • Request, Session and Context Part -1
  • Request , Session and Context Part - 2
  • Understanding init, service and ServletConfig
  • Hello JSP
  • Understanding JSP
  • JSP Page directives
  • HttpServletRequest Path Decoding
  • Scopes in JSP and the PageContext Object
  • Understanding MVC pattern
  • PART -1 Writing an MVC app
  • JSTL
    • For-each
  • CRUD-1
  • Project Work
    • Create a Simple Java Web Application Using Servlet, JSP/JSTL and JDBC/Transaction
  • Locale Filter
  • Action Plan
    • Schedule
    • Hit webservice
Powered by GitBook
On this page
  • Step 1: Various web applications are deployed on tomcat
  • Step 2: Hit the URL
  • Step 3: tomcat will create the request and response objects
  • Step 4: After reading the URL : tomcat identifies the path like : "http://localhost:8080/SimpleServletProject/SimpleServletPath" and loads the corresponding servlet defined using annotation or web.xml.
  • Step 5: Servlet will receive both request and response objects.
  • Resources :

Was this helpful?

Understanding the servlet

PreviousServlet Part 2NextServlet XML Configuration

Last updated 6 years ago

Was this helpful?

Step 1: Various web applications are deployed on tomcat

Step 2: Hit the URL

Step 3: tomcat will create the request and response objects

Step 5: Servlet will receive both request and response objects.

Resources :

Step 4: After reading the URL : tomcat identifies the path like : "" and loads the corresponding servlet defined using annotation or web.xml.

http://localhost:8080/SimpleServletProject/SimpleServletPath
17MB
O'Reilly Head First Servlets and JSP.pdf
pdf
Jsp and servlets Book