使用SpringDataRedis的入门

##在使用ssm框架下,我们会到redis做缓存。 ###1> 第一步,导包。

  
  
	redis.clients   
	jedis  
	2.9.0  
  
   
    
  org.springframework.data    
  spring-data-redis    
  1.7.2.RELEASE    

###2> 第二步,创建redis的配置文件。 ####redis.properties

 	   #redis地址
        redis.host=127.0.0.1 
        #端口
        redis.port=6379 
        # 密码,没有则可以不写
        redis.pass=123456 
        redis.database=0 
        redis.maxIdle=300 
        redis.maxWait=3000 
        redis.testOnBorrow=true 

####spring-redis.xml,但是建议直接写在applicationContext.xml(也就是spring的配置文件,在web.xml中已经配置了的)中,这样就可以直接引用. ####如果是新建了一个xml文件,就要在spring配置文件中引入,或者在web.xml中配置。

   
         
  
         
  
         
         
                
                
                       
                
                
                       
                
         

几个小插曲 1.在xml中引用外部xml文件

 spring-redis.xml就是外部文件

2.解决一个xml中只能引入一个.properties文件的问题 在引用的时候,用如下写法



3. redis中要存入对象时,对象要实现Serializable接口

你可能感兴趣的:(使用SpringDataRedis的入门)