org.glassfish.grizzly.http.server.HttpServer.onAddHttpHandler()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(7.0k)|赞(0)|评价(0)|浏览(106)

本文整理了Java中org.glassfish.grizzly.http.server.HttpServer.onAddHttpHandler()方法的一些代码示例,展示了HttpServer.onAddHttpHandler()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpServer.onAddHttpHandler()方法的具体详情如下:
包路径:org.glassfish.grizzly.http.server.HttpServer
类名称:HttpServer
方法名:onAddHttpHandler

HttpServer.onAddHttpHandler介绍

[英]Modifies handlers mapping during runtime.
[中]在运行时修改处理程序映射。

代码示例

代码示例来源:origin: org.glassfish.grizzly/grizzly-websockets-server

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server-core

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

代码示例来源:origin: org.mule.glassfish.grizzly/grizzly-http-server

/**
 * Adds the specified {@link HttpHandler}
 * with its associated mapping(s). Requests will be dispatched to a
 * {@link HttpHandler} based on these mapping
 * values.
 *
 * @param httpHandler a {@link HttpHandler}
 * @param mapping        context path mapping information.
 */
public void addHttpHandler(final HttpHandler httpHandler,
    HttpHandlerRegistration... mapping) {
  synchronized (handlersSync) {
    if (mapping == null || mapping.length == 0) {
      mapping = ROOT_MAPPING;
    }
    if (handlers.put(httpHandler, mapping) != null) {
      orderedHandlers.remove(httpHandler);
    }
    orderedHandlers.add(httpHandler);
    instance.onAddHttpHandler(httpHandler, mapping);
  }
}

相关文章