Example usage for org.springframework.data.redis.support.collections RedisCollectionFactoryBean RedisCollectionFactoryBean

List of usage examples for org.springframework.data.redis.support.collections RedisCollectionFactoryBean RedisCollectionFactoryBean

Introduction

In this page you can find the example usage for org.springframework.data.redis.support.collections RedisCollectionFactoryBean RedisCollectionFactoryBean.

Prototype

RedisCollectionFactoryBean

Source Link

Usage

From source file:org.springframework.integration.redis.outbound.RedisCollectionPopulatingMessageHandler.java

private RedisStore createStoreView(String key) {
    RedisCollectionFactoryBean fb = new RedisCollectionFactoryBean();
    fb.setKey(key);//ww  w. jav  a 2s . c  o m
    fb.setTemplate(this.redisTemplate);
    fb.setType(this.collectionType);
    fb.afterPropertiesSet();
    return fb.getObject();
}