本文整理了Java中org.apache.tomcat.websocket.server.WsSci
类的一些代码示例,展示了WsSci
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WsSci
类的具体详情如下:
包路径:org.apache.tomcat.websocket.server.WsSci
类名称:WsSci
[英]Registers an interest in any class that is annotated with ServerEndpoint so that Endpoint can be published via the WebSocket server.
[中]注册对使用ServerEndpoint注释的任何类的兴趣,以便可以通过WebSocket服务器发布端点。
代码示例来源:origin: codefollower/Tomcat-Research
@Override
public void contextInitialized(ServletContextEvent sce) {
ServletContext sc = sce.getServletContext();
// Don't trigger WebSocket initialization if a WebSocket Server
// Container is already present
if (sc.getAttribute(Constants.SERVER_CONTAINER_SERVLET_CONTEXT_ATTRIBUTE) == null) {
WsSci.init(sce.getServletContext(), false);
}
}
代码示例来源:origin: AndreasKl/springboot-angular-atmosphere-quickstart
@Override
public void customize(Context context) {
context.addServletContainerInitializer(new WsSci(), null);
}
};
代码示例来源:origin: org.jboss.web/jbossweb
throws ServletException {
if (!isJava7OrLater()) {
WsServerContainer sc = init(ctx, true);
代码示例来源:origin: org.apache.tomcat/tomcat7-websocket
throws ServletException {
if (!isJava7OrLater()) {
WsServerContainer sc = init(ctx, true);
代码示例来源:origin: org.apache.tomcat.embed/tomcat-embed-websocket
@Override
public void contextInitialized(ServletContextEvent sce) {
ServletContext sc = sce.getServletContext();
// Don't trigger WebSocket initialization if a WebSocket Server
// Container is already present
if (sc.getAttribute(Constants.SERVER_CONTAINER_SERVLET_CONTEXT_ATTRIBUTE) == null) {
WsSci.init(sce.getServletContext(), false);
}
}
代码示例来源:origin: Kurento/kurento-java
@Override
public void customize(Context context) {
context.addServletContainerInitializer(new WsSci(), null);
}
};
代码示例来源:origin: org.jboss.web/jbossweb
@Override
public void contextInitialized(ServletContextEvent sce) {
ServletContext sc = sce.getServletContext();
// Don't trigger WebSocket initialization if a WebSocket Server
// Container is already present
if (sc.getAttribute(Constants.SERVER_CONTAINER_SERVLET_CONTEXT_ATTRIBUTE) == null) {
WsSci.init(sce.getServletContext(), false);
}
}
代码示例来源:origin: org.kurento/kurento-jsonrpc-server
@Override
public void customize(Context context) {
context.addServletContainerInitializer(new WsSci(), null);
}
};
代码示例来源:origin: org.apache.tomcat/tomcat-websocket
@Override
public void contextInitialized(ServletContextEvent sce) {
ServletContext sc = sce.getServletContext();
// Don't trigger WebSocket initialization if a WebSocket Server
// Container is already present
if (sc.getAttribute(Constants.SERVER_CONTAINER_SERVLET_CONTEXT_ATTRIBUTE) == null) {
WsSci.init(sce.getServletContext(), false);
}
}
代码示例来源:origin: org.apache.tomee/livereload-tomee
@Override
protected void startInternal() throws LifecycleException {
addServletContainerInitializer(new WsSci(), Collections.<Class<?>>singleton(LiveReloadEndpoint.class));
super.startInternal();
}
}
代码示例来源:origin: org.apache.tomcat/tomcat7-websocket
@Override
public void contextInitialized(ServletContextEvent sce) {
ServletContext sc = sce.getServletContext();
// Don't trigger WebSocket initialization if a WebSocket Server
// Container is already present
if (sc.getAttribute(Constants.SERVER_CONTAINER_SERVLET_CONTEXT_ATTRIBUTE) == null) {
WsSci.init(sce.getServletContext(), false);
}
}
代码示例来源:origin: codefollower/Tomcat-Research
throws ServletException {
WsServerContainer sc = init(ctx, true);
代码示例来源:origin: org.apache.tomcat.embed/tomcat-embed-websocket
throws ServletException {
WsServerContainer sc = init(ctx, true);
代码示例来源:origin: org.apache.tomcat/tomcat-websocket
throws ServletException {
WsServerContainer sc = init(ctx, true);
内容来源于网络,如有侵权,请联系作者删除!