Package core

Source Code of core.RedisConfiguration

package core;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.keyvalue.redis.connection.RedisConnectionFactory;
import org.springframework.data.keyvalue.redis.connection.jedis.JedisConnectionFactory;

@Configuration
public class RedisConfiguration {

  @Bean
  RedisConnectionFactory connectionFactory() {
    JedisConnectionFactory jedisConnFactory = new JedisConnectionFactory();
    jedisConnFactory.setPooling(false);
    jedisConnFactory.afterPropertiesSet();
    return jedisConnFactory;
  }
}
TOP

Related Classes of core.RedisConfiguration

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.