org.apache.catalina.Context.setDocBase()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(9.9k)|赞(0)|评价(0)|浏览(188)

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

Context.setDocBase介绍

[英]Set the document root for this Context. This can be an absolute pathname, a relative pathname, or a URL.
[中]设置此上下文的文档根目录。这可以是绝对路径名、相对路径名或URL。

代码示例

代码示例来源:origin: line/armeria

@Override
  protected WebResourceSet createMainResourceSet() {
    final Path docBase = config.docBase();
    assert docBase.isAbsolute();

    final String docBaseStr = docBase.toString();
    getContext().setDocBase(docBaseStr);

    if (Files.isDirectory(docBase)) {
      return new DirResourceSet(this, "/", docBaseStr, "/");
    }

    final Optional<String> jarRootOpt = config.jarRoot();
    if (jarRootOpt.isPresent()) { // If docBase is a JAR file
      final String jarRoot = jarRootOpt.get();
      if ("/".equals(jarRoot)) {
        return new JarResourceSet(this, "/", docBaseStr, "/");
      } else {
        return new JarSubsetResourceSet(this, "/", docBaseStr, "/", jarRoot);
      }
    }

    throw new IllegalArgumentException(sm.getString("standardRoot.startInvalidMain", docBaseStr));
  }
}

代码示例来源:origin: line/armeria

ctx.setDocBase(config.docBase().toString());
ctx.addLifecycleListener(TomcatUtil.getDefaultWebXmlListener());
ctx.setConfigFile(TomcatUtil.getWebAppConfigFile(ROOT_CONTEXT_PATH, config.docBase()));

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

@Override
  public void lifecycleEvent(LifecycleEvent event) {
    if (Lifecycle.AFTER_STOP_EVENT.equals(event.getType())) {
      // The context has stopped.
      Context context = (Context) event.getLifecycle();
      // Remove the old expanded WAR.
      ExpandWar.delete(toDelete);
      // Reset the docBase to trigger re-expansion of the WAR.
      context.setDocBase(newDocBase);
      // Remove this listener from the Context else it will run every
      // time the Context is stopped.
      context.removeLifecycleListener(this);
    }
  }
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

@Override
  public void lifecycleEvent(LifecycleEvent event) {
    if (Lifecycle.AFTER_STOP_EVENT.equals(event.getType())) {
      // The context has stopped.
      Context context = (Context) event.getLifecycle();
      // Remove the old expanded WAR.
      ExpandWar.delete(toDelete);
      // Reset the docBase to trigger re-expansion of the WAR.
      context.setDocBase(newDocBase);
      // Remove this listener from the Context else it will run every
      // time the Context is stopped.
      context.removeLifecycleListener(this);
    }
  }
}

代码示例来源:origin: apache/tomcat-maven-plugin

public Context addWebapp( Host host, String url, String name, String path )
  {

    Context ctx = new StandardContext();
    ctx.setName( name );
    ctx.setPath( url );
    ctx.setDocBase( path );

    ContextConfig ctxCfg = new ContextConfig();
    ctx.addLifecycleListener( ctxCfg );

    ctxCfg.setDefaultWebXml( new File( configurationDir, "conf/web.xml" ).getAbsolutePath() );

    if ( host == null )
    {
      getHost().addChild( ctx );
    }
    else
    {
      host.addChild( ctx );
    }

    return ctx;
  }
}

代码示例来源:origin: org.apache.tomcat.maven/tomcat7-war-runner

public Context addWebapp( Host host, String url, String name, String path )
  {
    Context ctx = new StandardContext();
    ctx.setName( name );
    ctx.setPath( url );
    ctx.setDocBase( path );
    ContextConfig ctxCfg = new ContextConfig();
    ctx.addLifecycleListener( ctxCfg );
    ctxCfg.setDefaultWebXml( new File( extractDirectory, "conf/web.xml" ).getAbsolutePath() );
    if ( host == null )
    {
      getHost().addChild( ctx );
    }
    else
    {
      host.addChild( ctx );
    }
    return ctx;
  }
};

代码示例来源:origin: apache/tomcat-maven-plugin

public Context addWebapp( Host host, String url, String name, String path )
  {

    Context ctx = new StandardContext();
    ctx.setName( name );
    ctx.setPath( url );
    ctx.setDocBase( path );

    ContextConfig ctxCfg = new ContextConfig();
    ctx.addLifecycleListener( ctxCfg );

    ctxCfg.setDefaultWebXml( new File( configurationDir, "conf/web.xml" ).getAbsolutePath() );

    if ( host == null )
    {
      getHost().addChild( ctx );
    }
    else
    {
      host.addChild( ctx );
    }

    return ctx;
  }
}

代码示例来源:origin: apache/tomcat-maven-plugin

public Context addWebapp( Host host, String url, String name, String path )
  {
    Context ctx = new StandardContext();
    ctx.setName( name );
    ctx.setPath( url );
    ctx.setDocBase( path );
    ContextConfig ctxCfg = new ContextConfig();
    ctx.addLifecycleListener( ctxCfg );
    ctxCfg.setDefaultWebXml( new File( extractDirectory, "conf/web.xml" ).getAbsolutePath() );
    if ( host == null )
    {
      getHost().addChild( ctx );
    }
    else
    {
      host.addChild( ctx );
    }
    return ctx;
  }
};

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

public Context addContext(Host host, String contextPath, String dir) {
  silence(contextPath);
  Context ctx = new StandardContext();
  ctx.setPath( contextPath );
  ctx.setDocBase(dir);
  ctx.addLifecycleListener(new FixContextListener());
  
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

public Context addContext(Host host, String contextPath, String dir) {
  silence(contextPath);
  Context ctx = new StandardContext();
  ctx.setPath( contextPath );
  ctx.setDocBase(dir);
  ctx.addLifecycleListener(new FixContextListener());
  
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

public Context addContext(Host host, String contextPath, String dir) {
  silence(contextPath);
  Context ctx = new StandardContext();
  ctx.setPath( contextPath );
  ctx.setDocBase(dir);
  ctx.addLifecycleListener(new FixContextListener());
  
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

public Context addContext(Host host, String contextPath, String contextName,
    String dir) {
  silence(host, contextPath);
  Context ctx = new StandardContext();
  ctx.setName(contextName);
  ctx.setPath(contextPath);
  ctx.setDocBase(dir);
  ctx.addLifecycleListener(new FixContextListener());
  
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

public Context addContext(Host host, String contextPath, String contextName,
    String dir) {
  silence(host, contextPath);
  Context ctx = new StandardContext();
  ctx.setName(contextName);
  ctx.setPath(contextPath);
  ctx.setDocBase(dir);
  ctx.addLifecycleListener(new FixContextListener());
  
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: codefollower/Tomcat-Research

/**
 * @see #addContext(String, String)
 */
public Context addContext(Host host, String contextPath, String contextName,
    String dir) {
  silence(host, contextPath);
  Context ctx = new StandardContext();
  ctx.setName(contextName);
  ctx.setPath(contextPath);
  ctx.setDocBase(dir);
  ctx.addLifecycleListener(new FixContextListener());
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

/**
 * @param host The host in which the context will be deployed
 * @param contextPath The context mapping to use, "" for root context.
 * @param contextName The context name
 * @param dir Base directory for the context, for static files.
 *  Must exist, relative to the server home
 * @return the deployed context
 * @see #addContext(String, String)
 */
public Context addContext(Host host, String contextPath, String contextName,
    String dir) {
  silence(host, contextName);
  Context ctx = createContext(host, contextPath);
  ctx.setName(contextName);
  ctx.setPath(contextPath);
  ctx.setDocBase(dir);
  ctx.addLifecycleListener(new FixContextListener());
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: ops4j/org.ops4j.pax.exam2

@Override
public Context addWebapp(Host host, String url, String name, String path) {
  Context ctx = new StandardContext();
  ctx.setName(name);
  ctx.setPath(url);
  ctx.setDocBase(path);
  ctx.addLifecycleListener(new DefaultWebXmlListener());
  URL configFile = getWebappConfigFile(path, url);
  ctx.setConfigFile(configFile);
  ContextConfig ctxCfg = new TomcatContextConfig();
  ctx.addLifecycleListener(ctxCfg);
  
  if (host == null) {
    getHost().addChild(ctx);
  } 
  else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: org.dbflute.tomcat/tomcat-boot

@Override
public Context addWebapp(Host host, String contextPath, String docBase, LifecycleListener config) {
  // quit because of private and unneeded
  //silence(host, contextPath);
  final Context ctx = createContext(host, contextPath);
  ctx.setPath(contextPath);
  ctx.setDocBase(docBase);
  ctx.addLifecycleListener(newDefaultWebXmlListener()); // *extension point
  ctx.setConfigFile(getWebappConfigFile(docBase, contextPath));
  ctx.addLifecycleListener(config);
  if (config instanceof ContextConfig) {
    // prevent it from looking ( if it finds one - it'll have dup error )
    ((ContextConfig) config).setDefaultWebXml(noDefaultWebXmlPath());
  }
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

public Context addWebapp(Host host, String url, String name, String path) {
  silence(host, url);
  Context ctx = new StandardContext();
  ctx.setName(name);
  ctx.setPath(url);
  ctx.setDocBase(path);
  ctx.addLifecycleListener(new DefaultWebXmlListener());
  
  ContextConfig ctxCfg = new ContextConfig();
  ctx.addLifecycleListener(ctxCfg);
  
  // prevent it from looking ( if it finds one - it'll have dup error )
  ctxCfg.setDefaultWebXml(noDefaultWebXmlPath());
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

public Context addWebapp(Host host, String url, String name, String path) {
  silence(host, url);
  Context ctx = new StandardContext();
  ctx.setName(name);
  ctx.setPath(url);
  ctx.setDocBase(path);
  ctx.addLifecycleListener(new DefaultWebXmlListener());
  
  ContextConfig ctxCfg = new ContextConfig();
  ctx.addLifecycleListener(ctxCfg);
  
  // prevent it from looking ( if it finds one - it'll have dup error )
  ctxCfg.setDefaultWebXml(noDefaultWebXmlPath());
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

public Context addWebapp(Host host, String url, String path) {
  silence(url);
  Context ctx = new StandardContext();
  ctx.setPath( url );
  ctx.setDocBase(path);
  if (defaultRealm == null) {
    initSimpleAuth();
  }
  ctx.setRealm(defaultRealm);
  ctx.addLifecycleListener(new DefaultWebXmlListener());
  
  ContextConfig ctxCfg = new ContextConfig();
  ctx.addLifecycleListener(ctxCfg);
  
  // prevent it from looking ( if it finds one - it'll have dup error )
  ctxCfg.setDefaultWebXml("org/apache/catalin/startup/NO_DEFAULT_XML");
  
  if (host == null) {
    getHost().addChild(ctx);
  } else {
    host.addChild(ctx);
  }
  return ctx;
}

相关文章

Context类方法