Class WsSci
- java.lang.Object
-
- org.apache.tomcat.websocket.server.WsSci
-
- All Implemented Interfaces:
ServletContainerInitializer
public class WsSci extends java.lang.Object implements ServletContainerInitializer
Registers an interest in any class that is annotated withServerEndpoint
so that Endpoint can be published via the WebSocket server.
-
-
Constructor Summary
Constructors Constructor Description WsSci()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onStartup(java.util.Set<java.lang.Class<?>> clazzes, ServletContext ctx)
Receives notification during startup of a web application of the classes within the web application that matched the criteria defined via theHandlesTypes
annotation.
-
-
-
Method Detail
-
onStartup
public void onStartup(java.util.Set<java.lang.Class<?>> clazzes, ServletContext ctx) throws ServletException
Description copied from interface:jakarta.servlet.ServletContainerInitializer
Receives notification during startup of a web application of the classes within the web application that matched the criteria defined via theHandlesTypes
annotation.- Specified by:
onStartup
in interfaceServletContainerInitializer
- Parameters:
clazzes
- The (possibly null) set of classes that met the specified criteriactx
- The ServletContext of the web application in which the classes were discovered- Throws:
ServletException
- If an error occurs
-
-