1. 程式人生 > 資料庫 >redis配置

redis配置

<?xml version="1.0" encoding="UTF-8"?>
 <beans xmlns="http://www.springframework.org/schema/beans" 
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xmlns:cache="http://www.springframework.org/schema/cache"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:c="http://www.springframework.org/schema/c"
	xmlns:context="http://www.springframework.org/schema/context"  
  	xsi:schemaLocation="http://www.springframework.org/schema/beans 
   	http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/cache 
    http://www.springframework.org/schema/cache/spring-cache.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context.xsd">   
      
	<!-- spring快取配置 modify by zhaoyunhua 20170302 -->
	
	<!-- spring快取機制 -->
	<cache:annotation-driven />   
 
    <!-- 使用redis快取 -->
    <bean id="cacheManager" class="org.springframework.data.redis.cache.RedisCacheManager" c:template-ref="redisTemplate"/>
    
    <!-- redis 相關配置 -->  
    <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">  
        <property name="maxIdle"        value="${redis.maxIdle}" />        
        <property name="maxWaitMillis"  value="${redis.maxWait}" />  
        <property name="testOnBorrow"   value="${redis.testOnBorrow}" />  
    </bean> 
        
    <bean id="connectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"  >
        	<property name="hostName"   value="${redis.host}"></property>
        	<property name="port"       value="${redis.port}"></property>
        	<property name="database"   value="${redis.database}"></property>
        	<property name="poolConfig" ref="poolConfig"></property>
    </bean>
      
    <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">  
      	<property name="connectionFactory" ref="connectionFactory" />  
    </bean>

</beans>