当前位置: 首页>>代码示例>>Java>>正文


Java Loader.getResourceBySelfClassLoader方法代码示例

本文整理汇总了Java中ch.qos.logback.core.util.Loader.getResourceBySelfClassLoader方法的典型用法代码示例。如果您正苦于以下问题:Java Loader.getResourceBySelfClassLoader方法的具体用法?Java Loader.getResourceBySelfClassLoader怎么用?Java Loader.getResourceBySelfClassLoader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ch.qos.logback.core.util.Loader的用法示例。


在下文中一共展示了Loader.getResourceBySelfClassLoader方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getPropertyValue

import ch.qos.logback.core.util.Loader; //导入方法依赖的package包/类
public String getPropertyValue() {
    if (path == null) {
        return "false";
    }

    URL resourceURL = Loader.getResourceBySelfClassLoader(path);

    return (resourceURL != null) ? "true" : "false";
}
 
开发者ID:zhaojunfei,项目名称:lemon,代码行数:10,代码来源:ResourceExistsPropertyDefiner.java

示例2: getPropertyValue

import ch.qos.logback.core.util.Loader; //导入方法依赖的package包/类
/**
 * Returns the string "true" if the {@link #setResource(String) resource} specified by the
 * user is available on the class path, "false" otherwise.
 *
 * @return "true"|"false" depending on the availability of resource on the classpath
 */
public String getPropertyValue() {
  if (OptionHelper.isEmpty(resourceStr)) {
    addError("The \"resource\" property must be set.");
    return null;
  }

  URL resourceURL = Loader.getResourceBySelfClassLoader(resourceStr);
  return booleanAsStr(resourceURL != null);
}
 
开发者ID:cscfa,项目名称:bartleby,代码行数:16,代码来源:ResourceExistsPropertyDefiner.java

示例3: resourceAsURL

import ch.qos.logback.core.util.Loader; //导入方法依赖的package包/类
URL resourceAsURL(String resourceAttribute) {
  URL url = Loader.getResourceBySelfClassLoader(resourceAttribute);
  if (url == null) {
    optionalWarning("Could not find resource corresponding to [" + resourceAttribute + "]");
    return null;
  } else
    return url;
}
 
开发者ID:cscfa,项目名称:bartleby,代码行数:9,代码来源:IncludeAction.java

示例4: urlByResourceName

import ch.qos.logback.core.util.Loader; //导入方法依赖的package包/类
private URL urlByResourceName(StatusManager sm, String resourceName) {
  sm.add(new InfoStatus("Searching for [" + resourceName + "]",
          this));
  URL url = Loader.getResource(resourceName, Loader.getTCL());
  if (url != null) {
    return url;
  }
  return Loader.getResourceBySelfClassLoader(resourceName);
}
 
开发者ID:cscfa,项目名称:bartleby,代码行数:10,代码来源:ContextJNDISelector.java

示例5: configureViaXML_File

import ch.qos.logback.core.util.Loader; //导入方法依赖的package包/类
static void configureViaXML_File() {
  LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
  try {
    JoranConfigurator configurator = new JoranConfigurator();
    configurator.setContext(lc);
    lc.reset();
    URL url = Loader.getResourceBySelfClassLoader("chapters/mdc/simpleMDC.xml");
    configurator.doConfigure(url);
  } catch (JoranException je) {
    StatusPrinter.print(lc);
  }
}
 
开发者ID:cscfa,项目名称:bartleby,代码行数:13,代码来源:SimpleMDC.java


注:本文中的ch.qos.logback.core.util.Loader.getResourceBySelfClassLoader方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。