org.apache.hadoop.http.HttpServer.addContext()方法的使用及代码示例

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

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

HttpServer.addContext介绍

[英]Add a context
[中]添加上下文

代码示例

代码示例来源:origin: org.jvnet.hudson.hadoop/hadoop-core

/**
 * Add default apps.
 * @param appDir The application directory
 * @throws IOException
 */
protected void addDefaultApps(final String appDir) throws IOException {
 // set up the context for "/logs/" if "hadoop.log.dir" property is defined. 
 String logDir = System.getProperty("hadoop.log.dir");
 if (logDir != null) {
  addContext("/logs/*", logDir, true);
 }
 // set up the context for "/static/*"
 addContext("/static/*", appDir + "/static", true);
}

代码示例来源: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.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: 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.prestosql.hadoop/hadoop-apache

/**
 * 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: 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);
}

相关文章