Spring 整合Redis5.0集群【jedisCluster】

1.第一步:引入响应的jar包。



    redis.clients
	jedis
	2.9.0


	org.springframework.data
	spring-data-redis
	1.7.1.RELEASE

2.第二步:Spring配置文件spring-redis.xml




	 
	
		
		
		
		
	

	
		
		
	

	
		
		
	

	
		
		
	

	
		
		
	

	
		
		
	

	
		
		
	

	
		
			
				
				
				
				
				
				
			
		
		
		
		
		
			
		
	 

3.编写redis.properties配置文件

redis.maxTotal=1000
redis.maxIdle=10
redis.maxActive=1000
redis.maxWait=30000
redis.testOnBorrow=true

4.编写测试代码【使用的jedisCluster】

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import redis.clients.jedis.JedisCluster;

public class RedisTest {
	@Test
	public void redisTest(){
		// 获得spring上下文,
		ApplicationContext ctx = new ClassPathXmlApplicationContext("spring-redis.xml");
		 JedisCluster jc = ctx.getBean(JedisCluster.class);
		 System.out.println(jc.get("Hello"));
	}

5.如何引入stringRedisTemplate,修改spring配置文件

	

	
		
		
		
		
		
		
		
		
		
		
	

	
		
		
			
				
					
					
				
				
					
					
				
				
					
					
				
				
					
					
				
				
					
					
				
				
					
					
				
			
		
	
	
		
		
	
	
		
		
			
		
	
	
		
	

6.编写测试代码【使用stringRedisTemplate】

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import redis.clients.jedis.JedisCluster;
public class RedisTest {
	
	@Test
	public void redisTest(){
		// 获得spring上下文,
		ApplicationContext ctx = new ClassPathXmlApplicationContext("spring-redis.xml");
	StringRedisTemplate stringRedisTemplate = ctx.getBean(StringRedisTemplate.class);
	System.out.println(stringRedisTemplate.opsForValue().get("Hello"));
	}

Spring 整合Redis5.0集群【jedisCluster】_第1张图片

你可能感兴趣的:(Redis,Redis集群,jedisCluster,Redis,Cluster)