Summary of spring-session redis cluster configuration steps
Summary of the configuration steps
Four simple steps to start spring-session redis configuration life
1. pom.xml Add jar dependency
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> .... <properties> <version.spring-session>1.2.2.RELEASE</version.spring-session> <!--不兼容 1.7.4.RELEASE --> <version.spring-data-redis>1.7.1.RELEASE</version.spring-data-redis> </properties> <dependencies> .... <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session</artifactId> <version>${version.spring-session}</version> </dependency> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session-data-redis</artifactId> <version>${version.spring-session}</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>${version.spring-data-redis}</version> </dependency> .... </dependencies> </project>
Copy after login
2. web.xml Add springSessionRepositoryFilter configuration download
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> ... <!-- spring-session config --> <context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath*:spring-session-cluster.xml </param-value> </context-param> <!-- 这个filter 要放在第一个 --> <filter> <filter-name>springSessionRepositoryFilter</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> </filter> <filter-mapping> <filter-name>springSessionRepositoryFilter</filter-name> <url-pattern>/*</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>ERROR</dispatcher> </filter-mapping> ... </web-app>
Copy after login
3. spring-session-cluster. xml download
<?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:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd "> <context:annotation-config /> <util:properties id="redis" location="classpath:redis-cluster.properties"></util:properties> <!-- RedisHttpSessionConfiguration --> <bean class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration" /> <!--JedisConnectionFactory --> <bean class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"> <constructor-arg index="0"> <!-- since spring-data-redis 1.7 --> <bean class="org.springframework.data.redis.connection.RedisClusterConfiguration"> <constructor-arg index="0"> <set> <value>#{redis['redis.redisClusterConfiguration.clusters']}</value> </set> </constructor-arg> <!-- 用于 redis.clients.jedis.JedisCluster.JedisCluster(Set<HostAndPort>, int, int, GenericObjectPoolConfig) 第三个参数 maxRedirections 默认值是5 一般当此值设置过大时,容易报:Too many Cluster redirections --> <property name="maxRedirects" value="#{redis['redis.redisClusterConfiguration.maxRedirects']}" /> </bean> </constructor-arg> <constructor-arg index="1"> <bean class="redis.clients.jedis.JedisPoolConfig"> <property name="maxIdle" value="#{redis['redis.jedisPoolConfig.MaxIdle']}" /> <property name="testOnBorrow" value="#{redis['redis.jedisPoolConfig.testOnBorrow']}" /> <property name="testOnReturn" value="#{redis['redis.jedisPoolConfig.testOnReturn']}" /> <!-- 新版jedis 不支持这个参数了 --> <!-- <property name="maxWait" value="#{redis['redis.jedisPoolConfig.MaxWait']}" /> --> <!-- <property name="maxActive" value="#{redis['redis.jedisPoolConfig.MaxActive']}" /> --> </bean> </constructor-arg> </bean> </beans>
Copy after login
4. redis-cluster.properties download
#############for org.springframework.data.redis.connection.RedisClusterConfiguration################### #只需要配置 master #理论上只需要配置一个节点即可,配置多个是为了防止单个节点挂掉, redis.redisClusterConfiguration.clusters=10.88.21.31:10000,10.88.22.25:10000,10.88.21.31:10001 #用于 redis.clients.jedis.JedisCluster.JedisCluster(Set<HostAndPort>, int, int, GenericObjectPoolConfig) 第三个参数 maxRedirections #默认值是5 #一般当此值设置过大时,容易报:Too many Cluster redirections redis.redisClusterConfiguration.maxRedirects=3 ###########for redis.clients.jedis.JedisPoolConfig############################## redis.jedisPoolConfig.MaxIdle=60000 redis.jedisPoolConfig.testOnBorrow=true redis.jedisPoolConfig.testOnReturn=true #新版jedis 不支持这个参数了 #redis.jedisPoolConfig.MaxActive=50 #redis.jedisPoolConfig.MaxWait=5000
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
Assassin's Creed Shadows: Seashell Riddle Solution
1 months ago
By DDD
What's New in Windows 11 KB5054979 & How to Fix Update Issues
3 weeks ago
By DDD
Where to find the Crane Control Keycard in Atomfall
1 months ago
By DDD
How to fix KB5055523 fails to install in Windows 11?
2 weeks ago
By DDD
InZoi: How To Apply To School And University
3 weeks ago
By DDD

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
