| Package | Description |
|---|---|
| javax.servlet | |
| javax.servlet.http | |
| javax.servlet.jsp |
| Modifier and Type | Class and Description |
|---|---|
class |
GenericServlet
GenericServlet is a convenient abstract class for defining Servlets.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends Servlet> |
ServletContext.createServlet(java.lang.Class<T> c)
Creates a servlet instance using the web-apps injection.
|
| Modifier and Type | Method and Description |
|---|---|
Servlet |
UnavailableException.getServlet()
Deprecated.
|
Servlet |
ServletContext.getServlet(java.lang.String name)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Enumeration<Servlet> |
ServletContext.getServlets()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
ServletRegistration.Dynamic |
ServletContext.addServlet(java.lang.String servletName,
Servlet servlet)
Adds a servlet to context
|
| Modifier and Type | Method and Description |
|---|---|
ServletRegistration.Dynamic |
ServletContext.addServlet(java.lang.String servletName,
java.lang.Class<? extends Servlet> servletClass)
Adds a servlet class to the servlet container.
|
| Constructor and Description |
|---|
UnavailableException(int sec,
Servlet servlet,
java.lang.String message)
Deprecated.
|
UnavailableException(Servlet servlet,
java.lang.String message)
Deprecated.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpServlet
HttpServlet is a convenient abstract class for creating servlets.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
HttpJspPage
HttpJspPage is the normal interface to extend when implementing
a custom base class.
|
interface |
JspPage
JspPage is the base interface for any JSP page.
|
| Modifier and Type | Method and Description |
|---|---|
abstract PageContext |
JspFactory.getPageContext(Servlet servlet,
ServletRequest request,
ServletResponse response,
java.lang.String errorPageURL,
boolean needsSession,
int buffer,
boolean autoflush) |
abstract void |
PageContext.initialize(Servlet servlet,
ServletRequest request,
ServletResponse response,
java.lang.String errorPageURL,
boolean needsSession,
int bufferSize,
boolean autoFlush)
Internal routine to initialize the PageContext for a page.
|