User Tools

Site Tools


servlets

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
servlets [2008/10/08 11:55] roumaniservlets [2008/10/08 19:36] (current) roumani
Line 9: Line 9:
 ===== Outline ===== ===== Outline =====
  
-== The Architecture ==+== Tomcat as a Framework == 
 +  * Infrastructural services (networking, logging, data access, etc.) 
 +  * Persistence and session management 
 +  * Events (context and session listeners) 
 +  * Filters 
 +  * Declarative security 
 + 
 +== Architecture ==
   * Tomcat = Coyote + Catalina + Jasper. It is a reference implementation of Sun's Servlet/JSP standards.   * Tomcat = Coyote + Catalina + Jasper. It is a reference implementation of Sun's Servlet/JSP standards.
-  * All three are 100% Java +  * All three are 100% Java and live off the same VM. They are one process in the eyes of the O/S. 
-  * Coyote is a web server / connector, Catalina is a servlet container, and Jasper is a JSP compiler+  * Coyote is a web server / connector, Catalina is a servlet container (aka engine), and Jasper is a JSP processor
-  * Client uses HTTP to reach Coyote+  * Client uses HTTP to reach Coyote over TCP/IP; Coyote consults its URL mappings to determine how to serve: traditionally (NFS for static, CGI, or PHP/SSIor via delegating to Catalina. 
-  * Coyote uses web.xml to determine how to serve: traditional NFS (static HTML), CGI, and SSIor delegate to Catalina. +  * Catalina works on the request guided by your servlet
-  * You supply your servlet subclass to Catalina and it handles the request. +  * Jasper turns JSP documents into servlets. Think of it as a JSP compiler.
-  * Jasper turns JSP documents into servlets. Think of it an a JSP compiler.+
   * Coyote can also operate as a connector to an existing web server, such as Apache or IIS. In that case, the web server would handle traditional serving and, for servlet requests, would use the JK protocol (similar to HTTP but binary) to delegate to Catalina in process.   * Coyote can also operate as a connector to an existing web server, such as Apache or IIS. In that case, the web server would handle traditional serving and, for servlet requests, would use the JK protocol (similar to HTTP but binary) to delegate to Catalina in process.
  
Line 32: Line 38:
   * There is no client-to-thread mapping: the same client may get served by the same or a different thread.   * There is no client-to-thread mapping: the same client may get served by the same or a different thread.
   * When it is time to stop this servlet, the server invokes its ''destroy'' method then unloads it.   * When it is time to stop this servlet, the server invokes its ''destroy'' method then unloads it.
 +
 +== The Directory Structure ==
 +  * The subdirectories bin and conf
 +  * The lib subdirectory
 +  * The subdirectories logs and work
 +  * The projects root: webapps
 +  * The role of WEB-INF vis-a-vis visibility
 +  * The subdirectories of WEB-INF: classes and lib
 +  * The web.xml file
 +  * Deploying war files
 +  * The manager application
  
 == The API == == The API ==
Line 38: Line 55:
   * Note that parameters are available as Map<String,String[]> and that for payloads you can have a raw stream or a wrapped up one.   * Note that parameters are available as Map<String,String[]> and that for payloads you can have a raw stream or a wrapped up one.
   * The response object allows you to set the HTTP response line and headers as well as the payload.   * The response object allows you to set the HTTP response line and headers as well as the payload.
- 
-== The Franework == 
-  * Infrastructural services 
-  * Data structures and session management 
-  * Database connectivity 
-  * Events and filtering 
-  * Declarative security 
  
 ===== To Do ===== ===== To Do =====
- 
   * Read Sections 6.1 through 6.5 of our textbook.    * Read Sections 6.1 through 6.5 of our textbook. 
   * Take an overall look at the servlet API (accessible from our //Resources// Page.   * Take an overall look at the servlet API (accessible from our //Resources// Page.
-  * Review Lab-3+  * Complete and then review Lab-3
servlets.1223466952.txt.gz · Last modified: 2008/10/08 11:55 by roumani

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki