net.sf.ehcache.config.Configuration.getCacheManagerPeerListenerFactoryConfigurations()方法的使用及代码示例

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

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

Configuration.getCacheManagerPeerListenerFactoryConfigurations介绍

[英]Gets the CacheManagerPeerListener factory configuration.
[中]获取CacheManagerPeerListener工厂配置。

代码示例

代码示例来源:origin: net.sf.ehcache/ehcache

private void testAddCacheManagerPeerListenerFactoryElement() {
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations = configuration
      .getCacheManagerPeerListenerFactoryConfigurations();
  if (cacheManagerPeerListenerFactoryConfigurations != null && !cacheManagerPeerListenerFactoryConfigurations.isEmpty()) {
    addAllFactoryConfigsAsChildElements(this, "cacheManagerPeerListenerFactory", cacheManagerPeerListenerFactoryConfigurations);
  }
}

代码示例来源:origin: net.sf.ehcache/ehcache

/**
 * Tries to load the class specified otherwise defaults to null
 */
public Map<String, CacheManagerPeerListener> createCachePeerListeners() {
  String className = null;
  Map<String, CacheManagerPeerListener> cacheManagerPeerListeners = new HashMap<String, CacheManagerPeerListener>();
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations =
      configuration.getCacheManagerPeerListenerFactoryConfigurations();
  boolean first = true;
  for (FactoryConfiguration factoryConfiguration : cacheManagerPeerListenerFactoryConfigurations) {
    if (factoryConfiguration != null) {
      className = factoryConfiguration.getFullyQualifiedClassPath();
    }
    if (className == null) {
      LOG.debug("No CachePeerListenerFactoryConfiguration specified. Not configuring a CacheManagerPeerListener.");
      return null;
    } else {
      CacheManagerPeerListenerFactory cacheManagerPeerListenerFactory = (CacheManagerPeerListenerFactory)
          ClassLoaderUtil.createNewInstance(loader, className);
      Properties properties = PropertyUtil.parseProperties(factoryConfiguration.getProperties(),
          factoryConfiguration.getPropertySeparator());
      CacheManagerPeerListener cacheManagerPeerListener =
          cacheManagerPeerListenerFactory.createCachePeerListener(cacheManager, properties);
      cacheManagerPeerListeners.put(cacheManagerPeerListener.getScheme(), cacheManagerPeerListener);
    }
  }
  return cacheManagerPeerListeners;
}

代码示例来源:origin: net.sf.ehcache.internal/ehcache-core

private void testAddCacheManagerPeerListenerFactoryElement() {
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations = configuration
      .getCacheManagerPeerListenerFactoryConfigurations();
  if (cacheManagerPeerListenerFactoryConfigurations != null && !cacheManagerPeerListenerFactoryConfigurations.isEmpty()) {
    addAllFactoryConfigsAsChildElements(this, "cacheManagerPeerListenerFactory", cacheManagerPeerListenerFactoryConfigurations);
  }
}

代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache

private void testAddCacheManagerPeerListenerFactoryElement() {
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations = configuration
      .getCacheManagerPeerListenerFactoryConfigurations();
  if (cacheManagerPeerListenerFactoryConfigurations != null && !cacheManagerPeerListenerFactoryConfigurations.isEmpty()) {
    addAllFactoryConfigsAsChildElements(this, "cacheManagerPeerListenerFactory", cacheManagerPeerListenerFactoryConfigurations);
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

private void testAddCacheManagerPeerListenerFactoryElement() {
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations = configuration
      .getCacheManagerPeerListenerFactoryConfigurations();
  if (cacheManagerPeerListenerFactoryConfigurations != null && !cacheManagerPeerListenerFactoryConfigurations.isEmpty()) {
    addAllFactoryConfigsAsChildElements(this, "cacheManagerPeerListenerFactory", cacheManagerPeerListenerFactoryConfigurations);
  }
}

代码示例来源:origin: net.sf.ehcache.internal/ehcache-core

/**
 * Tries to load the class specified otherwise defaults to null
 */
public Map<String, CacheManagerPeerListener> createCachePeerListeners() {
  String className = null;
  Map<String, CacheManagerPeerListener> cacheManagerPeerListeners = new HashMap<String, CacheManagerPeerListener>();
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations =
      configuration.getCacheManagerPeerListenerFactoryConfigurations();
  boolean first = true;
  for (FactoryConfiguration factoryConfiguration : cacheManagerPeerListenerFactoryConfigurations) {
    if (factoryConfiguration != null) {
      className = factoryConfiguration.getFullyQualifiedClassPath();
    }
    if (className == null) {
      LOG.debug("No CachePeerListenerFactoryConfiguration specified. Not configuring a CacheManagerPeerListener.");
      return null;
    } else {
      CacheManagerPeerListenerFactory cacheManagerPeerListenerFactory = (CacheManagerPeerListenerFactory)
          ClassLoaderUtil.createNewInstance(loader, className);
      Properties properties = PropertyUtil.parseProperties(factoryConfiguration.getProperties(),
          factoryConfiguration.getPropertySeparator());
      CacheManagerPeerListener cacheManagerPeerListener =
          cacheManagerPeerListenerFactory.createCachePeerListener(cacheManager, properties);
      cacheManagerPeerListeners.put(cacheManagerPeerListener.getScheme(), cacheManagerPeerListener);
    }
  }
  return cacheManagerPeerListeners;
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache

/**
 * Tries to load the class specified otherwise defaults to null
 */
public Map<String, CacheManagerPeerListener> createCachePeerListeners() {
  String className = null;
  Map<String, CacheManagerPeerListener> cacheManagerPeerListeners = new HashMap<String, CacheManagerPeerListener>();
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations =
      configuration.getCacheManagerPeerListenerFactoryConfigurations();
  boolean first = true;
  for (FactoryConfiguration factoryConfiguration : cacheManagerPeerListenerFactoryConfigurations) {
    if (factoryConfiguration != null) {
      className = factoryConfiguration.getFullyQualifiedClassPath();
    }
    if (className == null) {
      LOG.debug("No CachePeerListenerFactoryConfiguration specified. Not configuring a CacheManagerPeerListener.");
      return null;
    } else {
      CacheManagerPeerListenerFactory cacheManagerPeerListenerFactory = (CacheManagerPeerListenerFactory)
          ClassLoaderUtil.createNewInstance(className);
      Properties properties = PropertyUtil.parseProperties(factoryConfiguration.getProperties(),
          factoryConfiguration.getPropertySeparator());
      CacheManagerPeerListener cacheManagerPeerListener =
          cacheManagerPeerListenerFactory.createCachePeerListener(cacheManager, properties);
      cacheManagerPeerListeners.put(cacheManagerPeerListener.getScheme(), cacheManagerPeerListener);
    }
  }
  return cacheManagerPeerListeners;
}

代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache

/**
 * Tries to load the class specified otherwise defaults to null
 */
public Map<String, CacheManagerPeerListener> createCachePeerListeners() {
  String className = null;
  Map<String, CacheManagerPeerListener> cacheManagerPeerListeners = new HashMap<String, CacheManagerPeerListener>();
  List<FactoryConfiguration> cacheManagerPeerListenerFactoryConfigurations =
      configuration.getCacheManagerPeerListenerFactoryConfigurations();
  boolean first = true;
  for (FactoryConfiguration factoryConfiguration : cacheManagerPeerListenerFactoryConfigurations) {
    if (factoryConfiguration != null) {
      className = factoryConfiguration.getFullyQualifiedClassPath();
    }
    if (className == null) {
      LOG.debug("No CachePeerListenerFactoryConfiguration specified. Not configuring a CacheManagerPeerListener.");
      return null;
    } else {
      CacheManagerPeerListenerFactory cacheManagerPeerListenerFactory = (CacheManagerPeerListenerFactory)
          ClassLoaderUtil.createNewInstance(loader, className);
      Properties properties = PropertyUtil.parseProperties(factoryConfiguration.getProperties(),
          factoryConfiguration.getPropertySeparator());
      CacheManagerPeerListener cacheManagerPeerListener =
          cacheManagerPeerListenerFactory.createCachePeerListener(cacheManager, properties);
      cacheManagerPeerListeners.put(cacheManagerPeerListener.getScheme(), cacheManagerPeerListener);
    }
  }
  return cacheManagerPeerListeners;
}

相关文章

Configuration类方法