redis与spring集成--spring-data-redis

 1.需要的jar包

 redis与spring集成--spring-data-redis_第1张图片

jar包方面的话,替换的时候自己测试吧,之前使用的时候自己打的一些jar包,不知怎么的死活无法连接,后来使用maven下载包的时候使用的这些,如果不清楚的话,推荐使用maven,配置依赖即可

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

      
      
        redis.clients  
        jedis  
        2.8.0  
     

2.spring-application.xml配置




	

	
	
		
		
		
		
		
		
	
	
	
	
		
		
		
		
		
	
	
	
	
		
		
		
		
			
		
		
		
			
		
	

redis.properties配置
#redis config
redis.host=127.0.0.1
redis.port=6379
redis.password=redis
redis.maxIdle=100 
redis.maxWait=1000 
redis.testOnBorrow=true 
redis.timeout=100000

3.实例代码

import java.util.Date;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.dao.DataAccessException;
import org.springframework.data.redis.connection.RedisConnection;
import org.springframework.data.redis.core.RedisCallback;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.RedisSerializer;

import com.vclouds.redis.Bean;


public class Dao
{
	private RedisTemplate redisTemplate;
	public void setRedisTemplate(RedisTemplate redisTemplate)
	{
		this.redisTemplate = redisTemplate;
	}
	
	public Dao()
	{
		ApplicationContext app = new ClassPathXmlApplicationContext("classpath:spring-application.xml");
		System.out.println(app);
		redisTemplate = (RedisTemplate) app.getBean("redisTemplate");
	}
	
	@Test
	public void test(){
		new Dao();
		final Bean b = new Bean(1,"hello",new Date());
		redisTemplate.execute(new RedisCallback()
		{
                        /**设置string类型的key-value*/
			public Boolean doInRedis(RedisConnection connection)
					throws DataAccessException
			{
				RedisSerializer serializer = redisTemplate.getStringSerializer();
				byte[] key = serializer.serialize("hello");
				byte[] value = serializer.serialize("world");
				try
				{
					connection.set(key, value);
				} catch (Exception e)
				{
					e.printStackTrace();
					return false;
				}
				return true;
			}
			
		});
		
		String str = redisTemplate.execute(new RedisCallback()
		{

			
    /**根据string类型的key获取value*/
                        public String doInRedis(RedisConnection connection)
                                throws DataAccessException{
                                RedisSerializer serializer = redisTemplate.getStringSerializer();
                                byte[] key = serializer.serialize("hello");
                                return serializer.deserialize(connection.get(key));
                        }
                 });
                 System.out.println(str);
                 }
             } 

 
   

4.常见问题

       需要注意的是这种使用方式需要将每次存放的值转换成byte数组进行操作,获取值的时候再将获取到的byte数组转为需要的类型进行操作,如果要建对象使用字符串存储,也同样需要将之转换成byte数组,但是该对象必须实现Serializable接口。



你可能感兴趣的:(心得笔记)