Redis与SpringBoot整合
程序员文章站
2022-06-25 08:24:12
添加Redis相关jar包 org.springframework.boot spring-boot-starter-data-redis applicati ......
添加redis相关jar包
<dependency>
<groupid>org.springframework.boot</groupid>
<artifactid>spring-boot-starter-data-redis</artifactid>
</dependency>
application.properties
# ####
# redis 连接配置
# redis数据库索引(默认为0)
spring.redis.database=0
# redis服务器地址
spring.redis.host=192.168.114.129
# redis服务器连接端口
spring.redis.port=6379
# redis服务器连接密码(默认为空)
# spring.redis.password=123456
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=3000
redisconfig.java
推荐阅读
-
SpringBoot与docker的结合的示例
-
SpringBoot与velocity的结合的示例代码
-
springboot中使用redis的方法代码详解
-
SpringBoot2.0 整合 Shiro 框架,实现用户权限管理
-
SpringBoot2.0 整合 SpringSecurity 框架,实现用户权限安全管理
-
php与paypal整合方法
-
springboot windows10风格 activiti 整合项目框架源码 shiro 安全框架 druid
-
PHP商品秒杀问题解决方案实例详解【mysql与redis】
-
SpringBoot整合dubbo(yml格式配置)
-
SpringBoot2 整合 Zookeeper组件,管理架构中服务协调