October 2000
Intermediate to advanced
768 pages
16h 30m
English
In this chapter
Java Server Pages create a simplified layer on top of the servlet API. Aside from making it easy to create HTML output, the Java Server Pages API makes it easy to access common objects such as the request,
response, and session. You access these objects through built-in object names.
The built-in object names and their associated implementation classes are shown in Table 14.1:
Table 14.1. Built-In JSP Objects and Their Implementation Classes
| JSP Object | Implementation Class |
|---|---|
request
| HttpServletRequest
|
response
| HttpServletResponse
|
out
| JspWriter
|
session
| HttpSession
|
application
| ServletContext ... |
Read now
Unlock full access