本文整理了Java中net.sf.ehcache.config.Configuration.addCacheManagerPeerProviderFactory()
方法的一些代码示例,展示了Configuration.addCacheManagerPeerProviderFactory()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Configuration.addCacheManagerPeerProviderFactory()
方法的具体详情如下:
包路径:net.sf.ehcache.config.Configuration
类名称:Configuration
方法名:addCacheManagerPeerProviderFactory
[英]Adds a CacheManagerPeerProvider through FactoryConfiguration.
[中]通过FactoryConfiguration添加CacheManagerPeerProvider。
代码示例来源:origin: jooby-project/jooby
private void cacheManagerPeerProviderFactory(final Config conf) {
if (conf.hasPath("class")) {
eh.addCacheManagerPeerProviderFactory(
newFactory("ehcache.cacheManagerPeerProviderFactory", conf, FactoryConfiguration::new)
);
} else {
each(conf, (name, c) -> eh.addCacheManagerPeerProviderFactory(
newFactory("ehcache.cacheManagerPeerProviderFactory." + name, c,
FactoryConfiguration::new)
));
}
}
代码示例来源:origin: net.sf.ehcache/ehcache
/**
* Builder method to add a peer provider through a factory.
*
* @return this configuration instance
*/
public final Configuration cacheManagerPeerProviderFactory(FactoryConfiguration factory) {
addCacheManagerPeerProviderFactory(factory);
return this;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache
/**
* Builder method to add a peer provider through a factory.
*
* @return this configuration instance
*/
public final Configuration cacheManagerPeerProviderFactory(FactoryConfiguration factory) {
addCacheManagerPeerProviderFactory(factory);
return this;
}
代码示例来源:origin: net.sf.ehcache.internal/ehcache-core
/**
* Builder method to add a peer provider through a factory.
*
* @return this configuration instance
*/
public final Configuration cacheManagerPeerProviderFactory(FactoryConfiguration factory) {
addCacheManagerPeerProviderFactory(factory);
return this;
}
代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache
/**
* Builder method to add a peer provider through a factory.
*
* @return this configuration instance
*/
public final Configuration cacheManagerPeerProviderFactory(FactoryConfiguration factory) {
addCacheManagerPeerProviderFactory(factory);
return this;
}
代码示例来源:origin: org.jooby/jooby-ehcache
private void cacheManagerPeerProviderFactory(final Config conf) {
if (conf.hasPath("class")) {
eh.addCacheManagerPeerProviderFactory(
newFactory("ehcache.cacheManagerPeerProviderFactory", conf, FactoryConfiguration::new)
);
} else {
each(conf, (name, c) -> eh.addCacheManagerPeerProviderFactory(
newFactory("ehcache.cacheManagerPeerProviderFactory." + name, c,
FactoryConfiguration::new)
));
}
}
内容来源于网络,如有侵权,请联系作者删除!