gpt4 book ai didi

org.apache.tomcat.websocket.server.WsSci类的使用及代码示例

转载 作者:知者 更新时间:2024-03-27 13:29:05 24 4
gpt4 key购买 nike

本文整理了Java中org.apache.tomcat.websocket.server.WsSci类的一些代码示例,展示了WsSci类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WsSci类的具体详情如下:
包路径:org.apache.tomcat.websocket.server.WsSci
类名称: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);

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com