• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java HazelcastCacheManager类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.hazelcast.spring.cache.HazelcastCacheManager的典型用法代码示例。如果您正苦于以下问题:Java HazelcastCacheManager类的具体用法?Java HazelcastCacheManager怎么用?Java HazelcastCacheManager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



HazelcastCacheManager类属于com.hazelcast.spring.cache包,在下文中一共展示了HazelcastCacheManager类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: hazelcastCacheWithConfig

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithConfig() throws IOException {
	load(DefaultCacheConfiguration.class, "spring.cache.type=hazelcast",
			"spring.cache.hazelcast.config=org/springframework/boot/autoconfigure/cache/hazelcast-specific.xml");
	HazelcastInstance hazelcastInstance = this.context
			.getBean(HazelcastInstance.class);
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	HazelcastInstance actual = getHazelcastInstance(cacheManager);
	assertThat(actual).isSameAs(hazelcastInstance);
	assertThat(actual.getConfig().getConfigurationUrl())
			.isEqualTo(new ClassPathResource(
					"org/springframework/boot/autoconfigure/cache/hazelcast-specific.xml")
							.getURL());
	cacheManager.getCache("foobar");
	assertThat(cacheManager.getCacheNames()).containsOnly("foobar");
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:18,代码来源:CacheAutoConfigurationTests.java


示例2: hazelcastCacheWithMainHazelcastAutoConfiguration

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithMainHazelcastAutoConfiguration() throws IOException {
	String mainConfig = "org/springframework/boot/autoconfigure/hazelcast/hazelcast-specific.xml";
	AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext();
	EnvironmentTestUtils.addEnvironment(applicationContext,
			"spring.cache.type=hazelcast", "spring.hazelcast.config=" + mainConfig);
	applicationContext.register(DefaultCacheConfiguration.class);
	applicationContext.register(HazelcastAndCacheConfiguration.class);
	applicationContext.refresh();
	this.context = applicationContext;
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	HazelcastInstance hazelcastInstance = this.context
			.getBean(HazelcastInstance.class);
	assertThat(getHazelcastInstance(cacheManager)).isEqualTo(hazelcastInstance);
	assertThat(hazelcastInstance.getConfig().getConfigurationFile())
			.isEqualTo(new ClassPathResource(mainConfig).getFile());
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:19,代码来源:CacheAutoConfigurationTests.java


示例3: hazelcastCacheWithMainHazelcastAutoConfigurationAndSeparateCacheConfig

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithMainHazelcastAutoConfigurationAndSeparateCacheConfig()
		throws IOException {
	String mainConfig = "org/springframework/boot/autoconfigure/hazelcast/hazelcast-specific.xml";
	String cacheConfig = "org/springframework/boot/autoconfigure/cache/hazelcast-specific.xml";
	AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext();
	EnvironmentTestUtils.addEnvironment(applicationContext,
			"spring.cache.type=hazelcast",
			"spring.cache.hazelcast.config=" + cacheConfig,
			"spring.hazelcast.config=" + mainConfig);
	applicationContext.register(DefaultCacheConfiguration.class);
	applicationContext.register(HazelcastAndCacheConfiguration.class);
	applicationContext.refresh();
	this.context = applicationContext;
	HazelcastInstance hazelcastInstance = this.context
			.getBean(HazelcastInstance.class);
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	HazelcastInstance cacheHazelcastInstance = (HazelcastInstance) new DirectFieldAccessor(
			cacheManager).getPropertyValue("hazelcastInstance");
	assertThat(cacheHazelcastInstance).isNotEqualTo(hazelcastInstance); // Our custom
	assertThat(hazelcastInstance.getConfig().getConfigurationFile())
			.isEqualTo(new ClassPathResource(mainConfig).getFile());
	assertThat(cacheHazelcastInstance.getConfig().getConfigurationFile())
			.isEqualTo(new ClassPathResource(cacheConfig).getFile());
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:27,代码来源:CacheAutoConfigurationTests.java


示例4: hazelcastCacheWithMainHazelcastAutoConfiguration

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithMainHazelcastAutoConfiguration() throws IOException {
	Collection<Class<?>> configs = new ArrayList<Class<?>>();
	configs.add(DefaultCacheConfiguration.class);
	configs.add(HazelcastAutoConfiguration.class);
	String mainConfig = "org/springframework/boot/autoconfigure/hazelcast/hazelcast-specific.xml";
	doLoad(configs, "spring.cache.type=hazelcast",
			"spring.hazelcast.config=" + mainConfig);
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	HazelcastInstance hazelcastInstance = this.context
			.getBean(HazelcastInstance.class);
	assertThat(new DirectFieldAccessor(cacheManager).getPropertyValue(
			"hazelcastInstance"), equalTo((Object) hazelcastInstance));
	assertThat(hazelcastInstance.getConfig().getConfigurationFile(),
			equalTo(new ClassPathResource(mainConfig).getFile()));
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:18,代码来源:CacheAutoConfigurationTests.java


示例5: hazelcastCacheWithMainHazelcastAutoConfigurationAndSeparateCacheConfig

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithMainHazelcastAutoConfigurationAndSeparateCacheConfig()
		throws IOException {
	Collection<Class<?>> configs = new ArrayList<Class<?>>();
	configs.add(DefaultCacheConfiguration.class);
	configs.add(HazelcastAutoConfiguration.class);
	String mainConfig = "org/springframework/boot/autoconfigure/hazelcast/hazelcast-specific.xml";
	String cacheConfig = "org/springframework/boot/autoconfigure/cache/hazelcast-specific.xml";
	doLoad(configs, "spring.cache.type=hazelcast",
			"spring.cache.hazelcast.config=" + cacheConfig,
			"spring.hazelcast.config=" + mainConfig);
	HazelcastInstance hazelcastInstance = this.context
			.getBean(HazelcastInstance.class);
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	HazelcastInstance cacheHazelcastInstance = (HazelcastInstance) new DirectFieldAccessor(
			cacheManager).getPropertyValue("hazelcastInstance");
	assertThat(cacheHazelcastInstance, not(hazelcastInstance)); // Our custom
	assertThat(hazelcastInstance.getConfig().getConfigurationFile(),
			equalTo(new ClassPathResource(mainConfig).getFile()));
	assertThat(cacheHazelcastInstance.getConfig().getConfigurationFile(),
			equalTo(new ClassPathResource(cacheConfig).getFile()));
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:24,代码来源:CacheAutoConfigurationTests.java


示例6: hazelcastCacheExplicit

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheExplicit() {
	load(DefaultCacheConfiguration.class, "spring.cache.type=hazelcast");
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	// NOTE: the hazelcast implementation knows about a cache in a lazy manner.
	cacheManager.getCache("defaultCache");
	assertThat(cacheManager.getCacheNames()).containsOnly("defaultCache");
	assertThat(this.context.getBean(HazelcastInstance.class))
			.isEqualTo(getHazelcastInstance(cacheManager));
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:12,代码来源:CacheAutoConfigurationTests.java


示例7: hazelcastCacheWithExistingHazelcastInstance

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithExistingHazelcastInstance() {
	load(HazelcastCustomHazelcastInstance.class, "spring.cache.type=hazelcast");
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	assertThat(getHazelcastInstance(cacheManager))
			.isEqualTo(this.context.getBean("customHazelcastInstance"));
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:9,代码来源:CacheAutoConfigurationTests.java


示例8: cacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Bean
public HazelcastCacheManager cacheManager(
		HazelcastInstance existingHazelcastInstance) throws IOException {
	Resource config = this.cacheProperties.getHazelcast().getConfig();
	Resource location = this.cacheProperties.resolveConfigLocation(config);
	if (location != null) {
		HazelcastInstance cacheHazelcastInstance = new HazelcastInstanceFactory(
				location).getHazelcastInstance();
		return new CloseableHazelcastCacheManager(cacheHazelcastInstance);
	}
	return new HazelcastCacheManager(existingHazelcastInstance);
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:13,代码来源:HazelcastCacheConfiguration.java


示例9: hazelcastCacheExplicit

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheExplicit() {
	load(DefaultCacheConfiguration.class, "spring.cache.type=hazelcast");
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	// NOTE: the hazelcast implementation knows about a cache in a lazy manner.
	cacheManager.getCache("defaultCache");
	assertThat(cacheManager.getCacheNames(), containsInAnyOrder("defaultCache"));
	assertThat(cacheManager.getCacheNames(), hasSize(1));
	assertThat(this.context.getBean(HazelcastInstance.class),
			equalTo(new DirectFieldAccessor(cacheManager)
					.getPropertyValue("hazelcastInstance")));
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:14,代码来源:CacheAutoConfigurationTests.java


示例10: hazelcastCacheWithConfig

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithConfig() {
	load(DefaultCacheConfiguration.class, "spring.cache.type=hazelcast",
			"spring.cache.hazelcast.config=org/springframework/boot/autoconfigure/cache/hazelcast-specific.xml");
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	cacheManager.getCache("foobar");
	assertThat(cacheManager.getCacheNames(), containsInAnyOrder("foobar"));
	assertThat(cacheManager.getCacheNames(), hasSize(1));
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:11,代码来源:CacheAutoConfigurationTests.java


示例11: hazelcastCacheWithExistingHazelcastInstance

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Test
public void hazelcastCacheWithExistingHazelcastInstance() {
	load(HazelcastCustomHazelcastInstance.class, "spring.cache.type=hazelcast");
	HazelcastCacheManager cacheManager = validateCacheManager(
			HazelcastCacheManager.class);
	assertThat(
			new DirectFieldAccessor(cacheManager)
					.getPropertyValue("hazelcastInstance"),
			equalTo(this.context.getBean("customHazelcastInstance")));
}
 
开发者ID:Nephilim84,项目名称:contestparser,代码行数:11,代码来源:CacheAutoConfigurationTests.java


示例12: cacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Bean
public CacheManager cacheManager(HazelcastInstance hazelcastInstance) {
    return new HazelcastCacheManager(hazelcastInstance);
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:5,代码来源:CachingConfig.java


示例13: cacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Bean
public CacheManager cacheManager() {
    return new HazelcastCacheManager(hazelcastInstance());
}
 
开发者ID:ivogm,项目名称:bookstore,代码行数:5,代码来源:HazelcastConfig.java


示例14: cacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Bean
public HazelcastCacheManager cacheManager() throws IOException {
	return new HazelcastCacheManager(hazelcastInstance());
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:5,代码来源:CacheStatisticsAutoConfigurationTests.java


示例15: getHazelcastInstance

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
private static HazelcastInstance getHazelcastInstance(
		HazelcastCacheManager cacheManager) {
	return (HazelcastInstance) new DirectFieldAccessor(cacheManager)
			.getPropertyValue("hazelcastInstance");
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:6,代码来源:CacheAutoConfigurationTests.java


示例16: hazelcastCacheManagerCustomizer

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Bean
public CacheManagerCustomizer<HazelcastCacheManager> hazelcastCacheManagerCustomizer() {
	return new CacheManagerTestCustomizer<HazelcastCacheManager>() {
	};
}
 
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:6,代码来源:CacheAutoConfigurationTests.java


示例17: hazelcastcacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Bean
HazelcastCacheManager hazelcastcacheManager() throws Exception {
    LOG.info("Hazelcast Instance was found. Configuring HazelcastCacheManager");
    return new HazelcastCacheManager(hazelcastInstance);
}
 
开发者ID:sastix,项目名称:cms,代码行数:6,代码来源:CacheManagerConfiguration.java


示例18: cacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Override
@Bean
public CacheManager cacheManager()
{
	return new HazelcastCacheManager(hazelcastInstance());
}
 
开发者ID:yonadev,项目名称:yona-server,代码行数:7,代码来源:CoreConfiguration.java


示例19: longTermCacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Bean
public CacheManager longTermCacheManager() {
    return new HazelcastCacheManager(hazelcastInstance());
}
 
开发者ID:ozwillo,项目名称:ozwillo-portal,代码行数:5,代码来源:PortalCoreConfiguration.java


示例20: cacheManager

import com.hazelcast.spring.cache.HazelcastCacheManager; //导入依赖的package包/类
@Override
@Bean
public CacheManager cacheManager() {
	return new HazelcastCacheManager(hazelcastInstance());
}
 
开发者ID:hantsy,项目名称:spring4-sandbox,代码行数:6,代码来源:HazelcastCacheConfig.java



注:本文中的com.hazelcast.spring.cache.HazelcastCacheManager类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java RMCommunicator类代码示例发布时间:2022-05-22
下一篇:
Java ClasspathResourceLoader类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap