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


Java KeyValueTemplate类代码示例

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


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

示例1: getDefaultKeyValueTemplateBeanDefinition

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Override
protected AbstractBeanDefinition getDefaultKeyValueTemplateBeanDefinition(
		RepositoryConfigurationSource configurationSource) {

	RootBeanDefinition redisKeyValueAdapterDefinition = new RootBeanDefinition(RedisKeyValueAdapter.class);

	DirectFieldAccessor dfa = new DirectFieldAccessor(configurationSource);
	AnnotationAttributes aa = (AnnotationAttributes) dfa.getPropertyValue("attributes");

	GenericBeanDefinition indexConfiguration = new GenericBeanDefinition();
	indexConfiguration.setBeanClass(aa.getClass("indexConfiguration"));

	ConstructorArgumentValues constructorArgumentValuesForRedisKeyValueAdapter = new ConstructorArgumentValues();
	constructorArgumentValuesForRedisKeyValueAdapter.addGenericArgumentValue(indexConfiguration);
	redisKeyValueAdapterDefinition.setConstructorArgumentValues(constructorArgumentValuesForRedisKeyValueAdapter);

	RootBeanDefinition keyValueTemplateDefinition = new RootBeanDefinition(KeyValueTemplate.class);
	ConstructorArgumentValues constructorArgumentValuesForKeyValueTemplate = new ConstructorArgumentValues();
	constructorArgumentValuesForKeyValueTemplate.addGenericArgumentValue(redisKeyValueAdapterDefinition);
	keyValueTemplateDefinition.setConstructorArgumentValues(constructorArgumentValuesForKeyValueTemplate);

	return keyValueTemplateDefinition;
}
 
开发者ID:christophstrobl,项目名称:spring-data-keyvalue-redis,代码行数:24,代码来源:RedisRepositoryConfigurationExtension.java

示例2: kvtemplate

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
/**
 * Spring data key value operations over Hazelcast. This is the instance to use Hazelcast as a generic key value store using Spring data.
 * Does not start Hazelcast instance listeners (lifecycle / partition migration)
 * @return
 * @throws Exception
 */
@Bean
@Primary
public KeyValueTemplate kvtemplate() throws Exception
{
  KeyValueTemplate kv = new KeyValueTemplate(hzKeyValueAdaptor());
  return kv;
  
}
 
开发者ID:javanotes,项目名称:reactive-data,代码行数:15,代码来源:Configurator.java

示例3: kvtemplateAndJoin

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
/**
 * Spring data key value operations over Hazelcast. This is the instance to use Hazelcast as a generic key value store using Spring data.
 * Force start Hazelcast instance listeners (lifecycle / partition migration)
 * @return
 * @throws Exception
 */
@Bean
@Qualifier("kvTemplateJoinImmediate")
public KeyValueTemplate kvtemplateAndJoin() throws Exception
{
  KeyValueTemplate kv = new KeyValueTemplate(hzKeyValueAdaptorJoinImmediate());
  return kv;
  
}
 
开发者ID:javanotes,项目名称:reactive-data,代码行数:15,代码来源:Configurator.java

示例4: getDefaultKeyValueTemplateBeanDefinition

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Override
protected AbstractBeanDefinition getDefaultKeyValueTemplateBeanDefinition(
		RepositoryConfigurationSource configurationSource) {

	BeanDefinitionBuilder adapterBuilder = BeanDefinitionBuilder.rootBeanDefinition(MapKeyValueAdapter.class);
	adapterBuilder.addConstructorArgValue(getMapTypeToUse(configurationSource));

	BeanDefinitionBuilder builder = BeanDefinitionBuilder.rootBeanDefinition(KeyValueTemplate.class);
	builder
			.addConstructorArgValue(ParsingUtils.getSourceBeanDefinition(adapterBuilder, configurationSource.getSource()));
	builder.setRole(BeanDefinition.ROLE_SUPPORT);

	return ParsingUtils.getSourceBeanDefinition(builder, configurationSource.getSource());
}
 
开发者ID:spring-projects,项目名称:spring-data-keyvalue,代码行数:15,代码来源:MapRepositoryConfigurationExtension.java

示例5: assertKeyValueTemplateWithAdapterFor

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
private static void assertKeyValueTemplateWithAdapterFor(Class<?> mapType, ApplicationContext context) {

		KeyValueTemplate template = context.getBean(KeyValueTemplate.class);
		Object adapter = ReflectionTestUtils.getField(template, "adapter");

		assertThat(adapter, is(instanceOf(MapKeyValueAdapter.class)));
		assertThat(ReflectionTestUtils.getField(adapter, "store"), is(instanceOf(mapType)));
	}
 
开发者ID:spring-projects,项目名称:spring-data-keyvalue,代码行数:9,代码来源:MapRepositoriesConfigurationExtensionIntegrationTests.java

示例6: setup

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Before
public void setup() {

	KeyValueOperations operations = new KeyValueTemplate(new MapKeyValueAdapter());
	KeyValueRepositoryFactory keyValueRepositoryFactory = createKeyValueRepositoryFactory(operations);

	this.repository = getRepository(keyValueRepositoryFactory);
}
 
开发者ID:spring-projects,项目名称:spring-data-keyvalue,代码行数:9,代码来源:AbstractRepositoryUnitTests.java

示例7: keyValueTemplate

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Bean
public KeyValueTemplate keyValueTemplate() {
	return new KeyValueTemplate(new MapDbKeyValueAdapter());
}
 
开发者ID:mrfrag,项目名称:spring-data-mapdb,代码行数:5,代码来源:BookExampleConfiguration.java

示例8: setUp

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Before
public void setUp() throws InstantiationException, IllegalAccessException {
	this.operations = new KeyValueTemplate(HazelcastUtils.preconfiguredHazelcastKeyValueAdapter());
}
 
开发者ID:hazelcast,项目名称:spring-data-hazelcast,代码行数:5,代码来源:KeyValueTemplateTestsUsingHazelcastTest.java

示例9: keyValueTemplate

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Bean
public KeyValueOperations keyValueTemplate() {
	return new KeyValueTemplate(new MapKeyValueAdapter());
}
 
开发者ID:spring-projects,项目名称:spring-data-keyvalue,代码行数:5,代码来源:MapRepositoryRegistrarWithTemplateDefinitionIntegrationTests.java

示例10: mapKeyValueTemplate

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Bean
public KeyValueTemplate mapKeyValueTemplate() {
	return new KeyValueTemplate(new MapKeyValueAdapter());
}
 
开发者ID:spring-projects,项目名称:spring-data-keyvalue,代码行数:5,代码来源:MapRepositoriesConfigurationExtensionIntegrationTests.java

示例11: keyValueTemplate

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
@Bean
public KeyValueOperations keyValueTemplate(HazelcastKeyValueAdapter keyValueAdapter) {
    return new KeyValueTemplate(keyValueAdapter);
}
 
开发者ID:kazuhira-r,项目名称:hazelcast-examples,代码行数:5,代码来源:HazelcastConfig.java

示例12: keyValueTemplate

import org.springframework.data.keyvalue.core.KeyValueTemplate; //导入依赖的package包/类
/**
 * <P>
 * {@link org.springframework.data.keyvalue.core.KeyValueOperations KeyValueOperations} are implemented by a
 * {@link org.springframework.data.keyvalue.core.KeyValueTemplate KeyValueTemplate} that uses an adapter class
 * encapsulating the implementation.
 * </P>
 * 
 * @return One Hazelcast instance wrapped as a key/value implementation
 */
@Bean
public KeyValueOperations keyValueTemplate() {
	HazelcastKeyValueAdapter hazelcastKeyValueAdapter = new HazelcastKeyValueAdapter(this.hazelcastInstance);
	return new KeyValueTemplate(hazelcastKeyValueAdapter);
}
 
开发者ID:hazelcast,项目名称:spring-data-hazelcast,代码行数:15,代码来源:InstanceHelper.java


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