org.mortbay.jetty.Server.getHandlers()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(7.3k)|赞(0)|评价(0)|浏览(90)

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

Server.getHandlers介绍

暂无

代码示例

代码示例来源:origin: net.disy.legato/legato-testing

@Override
public ServletContext getServletContext(final String contextPath) {
 final Iterable<Handler> handlers = (server.getHandlers() == null ? Collections
   .singletonList(server.getHandler()) : Arrays.asList(server.getHandlers()));
 for (final Handler handler : handlers) {
  if (handler instanceof ContextHandler) {
   final ContextHandler contextHandler = (ContextHandler) handler;
   if (ObjectUtils.equals(contextPath, contextHandler.getContextPath())) {
    return contextHandler.getServletContext();
   }
  }
 }
 return null;
}

代码示例来源:origin: io.hops/hadoop-common

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

Handler[] handlers = webServer.getHandlers();
for (Handler handler : handlers) {
 if (handler.isFailed()) {

代码示例来源:origin: io.hops/hadoop-common

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: org.apache.tajo/tajo-core

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

Handler[] handlers = webServer.getHandlers();
for (Handler handler : handlers) {
 if (handler.isFailed()) {

代码示例来源:origin: com.facebook.hadoop/hadoop-core

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: io.hops/hadoop-common

Handler[] handlers = webServer.getHandlers();
for (Handler handler : handlers) {
 if (handler.isFailed()) {

代码示例来源:origin: ch.cern.hadoop/hadoop-common

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: io.fabric8/fabric-hadoop

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: io.hops/hadoop-common

Handler[] handlers = webServer.getHandlers();
for (int i = 0; i < handlers.length; i++) {
 if (handlers[i].isFailed()) {

代码示例来源:origin: apache/tajo

/**
 * Add a context 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping 
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered) throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, true);
}

代码示例来源:origin: apache/hama

/**
 * Add a context
 * 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered)
  throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, isFiltered);
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

Handler[] handlers = webServer.getHandlers();
for (int i = 0; i < handlers.length; i++) {
 if (handlers[i].isFailed()) {

代码示例来源:origin: org.apache.hama/hama-core

/**
 * Add a context
 * 
 * @param pathSpec The path spec for the context
 * @param dir The directory containing the context
 * @param isFiltered if true, the servlet is added to the filter path mapping
 * @throws IOException
 */
protected void addContext(String pathSpec, String dir, boolean isFiltered)
  throws IOException {
 if (0 == webServer.getHandlers().length) {
  throw new RuntimeException("Couldn't find handler");
 }
 WebAppContext webAppCtx = new WebAppContext();
 webAppCtx.setContextPath(pathSpec);
 webAppCtx.setWar(dir);
 addContext(webAppCtx, isFiltered);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

Handler[] handlers = webServer.getHandlers();
for (int i = 0; i < handlers.length; i++) {
 if (handlers[i].isFailed()) {

代码示例来源:origin: io.hops/hadoop-common

Handler[] handlers = webServer.getHandlers();
for (int i = 0; i < handlers.length; i++) {
 if (handlers[i].isFailed()) {

代码示例来源:origin: eclipse-jetty/eclipse-jetty-plugin

Handler[] handlers = server.getHandlers();

代码示例来源:origin: apache/tajo

Handler[] handlers = webServer.getHandlers();
for (Handler handler : handlers) {
 if (handler.isFailed()) {

相关文章