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


Java HazelcastCacheManager类代码示例

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


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


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