8384858687888990919293
private RedisStore createCollection(String key, CollectionType type) { RedisCollectionFactoryBean fb = new RedisCollectionFactoryBean(); fb.setKey(key); fb.setTemplate(template); fb.setType(type); fb.afterPropertiesSet(); return fb.getObject(); } @Test