Spring+SpringMVC做Redis集群(Sentinel模式)-spring配置文件

 


       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:cache="http://www.springframework.org/schema/cache"
       xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
            http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.2.xsd
            ">

 

      






      













    
    
    
   
    
          
          
          
          
          
          
          
          
    

    
    
        
            
                
                
            

        

        
        
            
                
                    
                    
                

                
                    
                    
                

            

        

    

    
        
        
    

    
        
         
            
        

        
            
        

    

    
    
        
    

       
             
   

    

 

 

配置完后测试:

java客户端Jedis在2.2.2及以上版本实现了对Sentinel的支持,只要是通过命令:
redis-cli -h 192.168.110.71 -p 26379  sentinel get-master-addr-by-name mymaster
1) "192.168.110.71"
2) "6379"

说明配置成功!

你可能感兴趣的:(综合,Spring)