org.mortbay.jetty.webapp.WebAppContext.getWebInf()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(4.2k)|赞(0)|评价(0)|浏览(118)

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

WebAppContext.getWebInf介绍

暂无

代码示例

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

else if (getBaseResource()!=null)
  Resource web_inf = getWebInf();
  if (web_inf !=null && web_inf.exists())

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

Resource web_inf = _context.getWebInf();
if (web_inf!=null)
      Resource l=_context.getWebInf().addPath(contents[i]);
      tlds.add(l);

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

protected void startContext()
  throws Exception
{
  // Configure defaults
  for (int i=0;i<_configurations.length;i++)
    _configurations[i].configureDefaults();
  
  // Is there a WEB-INF work directory
  Resource web_inf=getWebInf();
  if (web_inf!=null)
  {
    Resource work= web_inf.addPath("work");
    if (work.exists()
            && work.isDirectory()
            && work.getFile() != null
            && work.getFile().canWrite()
            && getAttribute(ServletHandler.__J_S_CONTEXT_TEMPDIR) == null)
      setAttribute(ServletHandler.__J_S_CONTEXT_TEMPDIR, work.getFile());
  }
  
  // Configure webapp
  for (int i=0;i<_configurations.length;i++)
    _configurations[i].configureWebApp();
  
  super.startContext();
}

代码示例来源:origin: weld/core

protected static void process(WebAppContext wac, boolean startNewHandler) throws Exception {
  MortbayWeldServletHandler wHanlder = new MortbayWeldServletHandler(wac.getServletHandler(), wac.getServletContext());
  wac.setServletHandler(wHanlder);
  wac.getSecurityHandler().setHandler(wHanlder);
  if (startNewHandler) {
    wHanlder.start();
  }
  Resource jettyEnv = null;
  Resource webInf = wac.getWebInf();
  if (webInf != null && webInf.exists()) {
    jettyEnv = webInf.addPath("jetty-env.xml");
  }
  if (jettyEnv == null || !(jettyEnv.exists())) {
    JettyLogger.LOG.missingJettyEnv();
  }
}

代码示例来源:origin: org.jboss.weld.servlet/weld-servlet-shaded

protected static void process(WebAppContext wac, boolean startNewHandler) throws Exception {
  MortbayWeldServletHandler wHanlder = new MortbayWeldServletHandler(wac.getServletHandler(), wac.getServletContext());
  wac.setServletHandler(wHanlder);
  wac.getSecurityHandler().setHandler(wHanlder);
  if (startNewHandler) {
    wHanlder.start();
  }
  Resource jettyEnv = null;
  Resource webInf = wac.getWebInf();
  if (webInf != null && webInf.exists()) {
    jettyEnv = webInf.addPath("jetty-env.xml");
  }
  if (jettyEnv == null || !(jettyEnv.exists())) {
    JettyLogger.LOG.missingJettyEnv();
  }
}

代码示例来源:origin: weld/core

protected static void process(WebAppContext wac, boolean startNewHandler) throws Exception {
  MortbayWeldServletHandler wHanlder = new MortbayWeldServletHandler(wac.getServletHandler(), wac.getServletContext());
  wac.setServletHandler(wHanlder);
  wac.getSecurityHandler().setHandler(wHanlder);
  if (startNewHandler) {
    wHanlder.start();
  }
  Resource jettyEnv = null;
  Resource webInf = wac.getWebInf();
  if (webInf != null && webInf.exists()) {
    jettyEnv = webInf.addPath("jetty-env.xml");
  }
  if (jettyEnv == null || !(jettyEnv.exists())) {
    JettyLogger.LOG.missingJettyEnv();
  }
}

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

Resource web_inf=_context.getWebInf();

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

protected URL findWebXml() throws IOException, MalformedURLException
{
  String descriptor=getWebAppContext().getDescriptor();
  if (descriptor!=null)
  {
    Resource web= Resource.newResource(descriptor);
    if (web.exists()&& !web.isDirectory())
      return web.getURL();
  }
  Resource web_inf=getWebAppContext().getWebInf();
  if(web_inf!=null && web_inf.isDirectory())
  {
    // do web.xml file
    Resource web=web_inf.addPath("web.xml");
    if(web.exists()) 
      return web.getURL();
    Log.debug("No WEB-INF/web.xml in "+getWebAppContext().getWar()
        +". Serving files and default/dynamic servlets only");
  }
  return null;
}

代码示例来源:origin: org.mortbay.jetty/com.springsource.org.mortbay.jetty.server

Log.debug("Configuring web-jetty.xml");
Resource web_inf=getWebAppContext().getWebInf();

代码示例来源:origin: org.mortbay.jetty/jetty-annotations

finder.find(_context.getWebInf().addPath("classes/"), 
    new ClassNameResolver()

相关文章

WebAppContext类方法