首先安裝好redis, 本地開發測試,建議安裝 windows綠色版本的redisredis
配置pom, 在相應服務的pom中添加 spring
<!-- Spring Data Redis的啓動器 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>
2. application.properties 配置文件中配置數據庫
#===========Redis配置=========== from www.1b23.com # Redis數據庫索引(默認爲0) spring.redis.database=0 # Redis服務器地址 spring.redis.host=127.0.0.1 # Redis服務器鏈接端口 spring.redis.port=6379 # Redis服務器鏈接密碼(默認爲空) spring.redis.password=root # 鏈接池最大鏈接數(使用負值表示沒有限制) spring.redis.pool.max-active=200 # 鏈接池最大阻塞等待時間(使用負值表示沒有限制) spring.redis.pool.max-wait=-1 # 鏈接池中的最大空閒鏈接 spring.redis.pool.max-idle=10 # 鏈接池中的最小空閒鏈接 spring.redis.pool.min-idle=0 # 鏈接超時時間(毫秒) spring.redis.timeout=2000ms spring.redis.jedis.pool.max-wait=-1ms #===========Redis配置===========
3.啓動類上加上註解
windows
@EnableRedisHttpSession
讀取和寫入session 和 普通方式同樣bash