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

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

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

WebAppContext.isParentLoaderPriority介绍

暂无

代码示例

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

public boolean shouldOverride (String name)
  { 
    //looking at system classpath
    if (getWebAppContext().isParentLoaderPriority())
      return true;
    return false;
  }
});

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

public boolean shouldOverride (String name)
  {
    //looking at webapp classpath, found already-parsed class of same name - did it come from system or duplicate in webapp?
    if (getWebAppContext().isParentLoaderPriority())
      return false;
    return true;
  }
});

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

public boolean shouldOverride (String name)
  {
    //looking at webapp classpath, found already-parsed class of same name - did it come from system or duplicate in webapp?
    if (getWebAppContext().isParentLoaderPriority())
      return false;
    return true;
  }
});

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

if (_context.isParentLoaderPriority() || isSystemPath(name))

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

boolean tried_parent= false;
if (c == null && _parent!=null && (_context.isParentLoaderPriority() || isSystemPath(name)) )

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

(!_context.isParentLoaderPriority() && jars.contains(jar)) || 
  (no_TLD_pattern!=null && no_TLD_pattern.matcher(jar).matches())))
continue;

相关文章

WebAppContext类方法