JavaScript is disabled on your browser.
- Summary:
- Nested |
- Field |
- Constr |
- Method
- Detail:
- Field |
- Constr |
- Method
javax.servlet
Interface ServletContainerInitializer
-
public interface ServletContainerInitializer
Servlet context startup listener.
This allows for the dynamic programmatic registration of servlets,
filters, and listeners in response to a web application being initialized
in the container.
- Since:
- 3.0
-
-
Method Summary
Methods
Modifier and Type |
Method and Description |
void |
onStartup (java.util.Set<java.lang.Class<?>> t,
ServletContext context)
Notifies of the startup of the specified servlet context.
|
-
-
Method Detail
-
onStartup
void onStartup(java.util.Set<java.lang.Class<?>> t,
ServletContext context)
throws ServletException
Notifies of the startup of the specified servlet context.
- Parameters:
t
- the set of application classes that extend or have been
annotated by javax.servlet.HandlesTypes
, or null if there are
no such classescontext
- the servlet context being started
- Throws:
ServletException
- Summary:
- Nested |
- Field |
- Constr |
- Method
- Detail:
- Field |
- Constr |
- Method