spring-redis-manager.xml 1.43 KB
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd"
       default-autowire="byName">

	<!--权限管理需要用到的redis
		/> -->

	<!--<bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">-->
		<!--&lt;!&ndash; <property name="maxActive" value="1000" /> &ndash;&gt;-->
		<!--<property name="maxIdle" value="500" />-->
		<!--&lt;!&ndash; <property name="maxWait" value="1000" /> &ndash;&gt;-->
		<!--<property name="testOnBorrow" value="true" />-->
	<!--</bean>-->

	<bean id="jedis.shardInfo1" class="redis.clients.jedis.JedisShardInfo">
		<constructor-arg index="0" value="${manage.redis.url}" />
		<constructor-arg index="1" value="${manage.redis.port}" />
	</bean>

	<bean id="shardedJedisPool" class="redis.clients.jedis.ShardedJedisPool">
		<constructor-arg index="0" ref="jedisPoolConfig" />
		<constructor-arg index="1">
			<list>
				<ref bean="jedis.shardInfo1" />
			</list>
		</constructor-arg>
	</bean>

<!-- 	<bean id="manageRedisUtil" class="com.diligrp.website.util.redis.impl.RedisUtilImpl"> -->
<!-- 		<property name="shardedJedisPool" ref="shardedJedisPool" /> -->
<!-- 		<property name="keyRule" value="DILI_MANAGE_SESSION_" /> -->
<!-- 	</bean> -->

</beans>