| Package | Description |
|---|---|
| javax.servlet | |
| javax.servlet.http | |
| javax.servlet.jsp |
| Modifier and Type | Class and Description |
|---|---|
class |
UnavailableException |
| Modifier and Type | Method and Description |
|---|---|
<T extends Filter> |
ServletContext.createFilter(java.lang.Class<T> c)
Create a filter using class
|
<T extends java.util.EventListener> |
ServletContext.createListener(java.lang.Class<T> listenerClass) |
<T extends AsyncListener> |
AsyncContext.createListener(java.lang.Class<T> cl) |
<T extends Servlet> |
ServletContext.createServlet(java.lang.Class<T> c)
Creates a servlet instance using the web-apps injection.
|
void |
FilterChain.doFilter(ServletRequest request,
ServletResponse response)
Invokes the next filter in the chain or the final servlet at
the end of the chain.
|
void |
Filter.doFilter(ServletRequest request,
ServletResponse response,
FilterChain chain)
doFilter performs the actual work of a filter, either modifying
the request or the response.
|
void |
RequestDispatcher.forward(ServletRequest request,
ServletResponse response)
Forwards the request to another page.
|
Servlet |
ServletContext.getServlet(java.lang.String name)
Deprecated.
|
void |
RequestDispatcher.include(ServletRequest request,
ServletResponse response)
Includes the result of another page.
|
void |
GenericServlet.init()
Initialize the servlet.
|
void |
Filter.init(FilterConfig filterConfig)
Initialize the filter.
|
void |
Servlet.init(ServletConfig config)
Initialize the servlet.
|
void |
GenericServlet.init(ServletConfig config)
Initialize the servlet.
|
void |
ServletContainerInitializer.onStartup(java.util.Set<java.lang.Class<?>> c,
ServletContext ctx) |
void |
Servlet.service(ServletRequest req,
ServletResponse res)
Service a request.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
HttpServletRequest.authenticate(HttpServletResponse response) |
boolean |
HttpServletRequestWrapper.authenticate(HttpServletResponse response) |
protected void |
HttpServlet.doDelete(HttpServletRequest req,
HttpServletResponse res)
Process a DELETE request
|
protected void |
HttpServlet.doGet(HttpServletRequest req,
HttpServletResponse res)
Process a GET or HEAD request
|
protected void |
HttpServlet.doHead(HttpServletRequest req,
HttpServletResponse res)
Process a HEAD request.
|
protected void |
HttpServlet.doOptions(HttpServletRequest req,
HttpServletResponse res)
Process an OPTIONS request
|
protected void |
HttpServlet.doPost(HttpServletRequest req,
HttpServletResponse res)
Process a POST request
|
protected void |
HttpServlet.doPut(HttpServletRequest req,
HttpServletResponse res)
Process a PUT request
|
protected void |
HttpServlet.doTrace(HttpServletRequest req,
HttpServletResponse res)
Process a TRACE request
|
Part |
HttpServletRequest.getPart(java.lang.String name) |
Part |
HttpServletRequestWrapper.getPart(java.lang.String name) |
java.util.Collection<Part> |
HttpServletRequest.getParts() |
java.util.Collection<Part> |
HttpServletRequestWrapper.getParts() |
void |
HttpServletRequest.login(java.lang.String username,
java.lang.String password) |
void |
HttpServletRequestWrapper.login(java.lang.String username,
java.lang.String password) |
void |
HttpServletRequest.logout() |
void |
HttpServletRequestWrapper.logout() |
protected void |
HttpServlet.service(HttpServletRequest req,
HttpServletResponse res)
Services a HTTP request.
|
void |
HttpServlet.service(ServletRequest request,
ServletResponse response)
Service a request.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HttpJspPage._jspService(HttpServletRequest request,
HttpServletResponse response)
The main service method for a JSP page.
|
abstract void |
PageContext.forward(java.lang.String relativeUrl)
Forwards the request relative to the current URL.
|
abstract void |
PageContext.handlePageException(java.lang.Exception e)
Internal routine to support errorPages.
|
abstract void |
PageContext.handlePageException(java.lang.Throwable t)
Internal routine to support errorPages
|
abstract void |
PageContext.include(java.lang.String relativeUrl)
Includes the a page relative to the current URL.
|
abstract void |
PageContext.include(java.lang.String relativeUrl,
boolean flush)
Includes the a page relative to the current URL.
|