public class ResteasyBootstrap extends Object implements ServletContextListener
Modifier and Type | Field and Description |
---|---|
protected ResteasyDeployment |
deployment |
Constructor and Description |
---|
ResteasyBootstrap() |
Modifier and Type | Method and Description |
---|---|
void |
contextDestroyed(ServletContextEvent event)
Receives notification that the ServletContext is about to be shut down.
|
void |
contextInitialized(ServletContextEvent event)
Receives notification that the web application initialization process is starting.
|
protected ResteasyDeployment deployment
public void contextInitialized(ServletContextEvent event)
ServletContextListener
All ServletContextListeners are notified of context initialization before any filters or servlets in the web application are initialized.
contextInitialized
in interface ServletContextListener
event
- the ServletContextEvent containing the ServletContext that is being initializedpublic void contextDestroyed(ServletContextEvent event)
ServletContextListener
All servlets and filters will have been destroyed before any ServletContextListeners are notified of context destruction.
contextDestroyed
in interface ServletContextListener
event
- the ServletContextEvent containing the ServletContext that is being destroyedCopyright © 2021 JBoss by Red Hat. All rights reserved.