public class JspProbeProvider extends Object
Constructor and Description |
---|
JspProbeProvider() |
Modifier and Type | Method and Description |
---|---|
void |
jspDestroyedEvent(String jspUri,
String appName,
String hostName)
Emits notification that a JSP is being destroyed, that is, the
Servlet corresponding to the JSP is called at its destroy method
either because the JSP is being reloaded or because the application
to which the JSP belongs is being stopped (for example, as part of its
undeployment).
|
void |
jspErrorEvent(String jspUri,
String appName,
String hostName)
Emits notification that access to a JSP has resulted in an error.
|
void |
jspLoadedEvent(String jspUri,
String appName,
String hostName)
Emits notification that a JSP has been accessed for the first time
and its corresponding Servlet has been loaded and initialized.
|
void |
jspReloadedEvent(String jspUri,
String appName,
String hostName)
Emits notification that a JSP whose source code has changed since
it was first deployed has been accessed again and was recompiled,
and its corresponding Servlet reloaded and reinitialized.
|
public void jspLoadedEvent(String jspUri, String appName, String hostName)
jspUri
- The path (relative to the root of the application)
to the JSP that was loadedappName
- The name of the application to which the JSP belongshostName
- The name of the virtual server on which the
application has been deployedpublic void jspReloadedEvent(String jspUri, String appName, String hostName)
jspUri
- The path (relative to the root of the application)
to the JSP that was reloadedappName
- The name of the application to which the JSP belongshostName
- The name of the virtual server on which the
application has been deployedpublic void jspDestroyedEvent(String jspUri, String appName, String hostName)
jspUri
- The path (relative to the root of the application)
to the JSP that was destroyedappName
- The name of the application to which the JSP belongshostName
- The name of the virtual server on which the
application has been deployedpublic void jspErrorEvent(String jspUri, String appName, String hostName)
jspUri
- The path (relative to the root of the application)
to the JSP that produced the errorappName
- The name of the application to which the JSP belongshostName
- The name of the virtual server on which the
application has been deployedCopyright © 2019. All rights reserved.