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

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

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

Configuration.addDefaultCache介绍

[英]Allows BeanHandler to add a default configuration to the configuration.
[中]允许BeanHandler向配置中添加默认配置。

代码示例

代码示例来源:origin: Red5/red5-io

configuration.addDefaultCache(conf);
} else {
  configuration.addCache(conf);

代码示例来源:origin: org.red5/red5-io

configuration.addDefaultCache(conf);
} else {
  configuration.addCache(conf);

代码示例来源:origin: org.wildfly/wildfly-testsuite-shared

CacheConfiguration defaultCache = new CacheConfiguration(cacheName, 1).eternal(false).timeToIdleSeconds(30)
    .timeToLiveSeconds(30).overflowToDisk(false);
ehCacheConfig.addDefaultCache(defaultCache);
cacheManager = new CacheManager(ehCacheConfig);
CacheService cacheService = new CacheService(cacheManager);

代码示例来源:origin: kwart/ldap-server

CacheConfiguration defaultCache = new CacheConfiguration("default", 1).eternal(false).timeToIdleSeconds(30)
    .timeToLiveSeconds(30).overflowToDisk(false);
ehCacheConfig.addDefaultCache(defaultCache);
CacheService cacheService = new CacheService(new CacheManager(ehCacheConfig));
directoryService.setCacheService(cacheService);

相关文章

Configuration类方法