SpringBoot整合Redisson

SpringBoot整合Redisson对应的,这也是官方比较推荐的配置方式,本文就使用redisson来配置一个RedissonClient。

maven依赖

<!--redisson--> <dependency>     <groupId>org.redisson</groupId>     <artifactId>redisson-spring-boot-starter</artifactId>     <version>3.17.0</version>     <exclusions>         <exclusion>             <groupId>org.redisson</groupId>             <artifactId>redisson-spring-data-23</artifactId>         </exclusion>     </exclusions> </dependency> <dependency>     <groupId>org.redisson</groupId>     <artifactId>redisson-spring-data-21</artifactId>     <version>3.17.0</version> </dependency>  <dependency>     <groupId>org.springframework.boot</groupId>     <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>

关于版本,直接去官网找下最新版即可,通过 redisson-spring-data-xx来适配spring的版本。上面是适配spring2.x版本的配置;

注意:redisson与redis在项目中都要用到所以也引入了 spring-boot-starter-data-redis。

Redisson配置文件

这里就配置一套单节点的redis,采用.yml文件的格式;配置如下:

yml配置如下:

spring.redis:   enable: true   url: 127.0.0.1
port: 6379 timeout: 2000 # 连接或读取超时时长(毫秒) database: 7 redisson: file: classpath:redisson.yml jedis: pool: max-active: 8 # 连接池最大连接数(使用负值表示没有限制) max-wait: 800 # 连接池最大阻塞等待时间(使用负值表示没有限制) max-idle: 8 # 连接池中的最大空闲连接 min-idle: 2 # 连接池中的最小空闲连接

本文通过spring.redis.redisson.file 来指定redisson的配置文件名称,和redis的配置分开放,这样做的好处就是比较清晰

 redisson.yml 文件

# 单节点配置 singleServerConfig:   # 连接空闲超时,单位:毫秒   idleConnectionTimeout: 10000   # 连接超时,单位:毫秒   connectTimeout: 10000   # 命令等待超时,单位:毫秒   timeout: 3000   # 命令失败重试次数,如果尝试达到 retryAttempts(命令失败重试次数) 仍然不能将命令发送至某个指定的节点时,将抛出错误。   # 如果尝试在此限制之内发送成功,则开始启用 timeout(命令等待超时) 计时。   retryAttempts: 3   # 命令重试发送时间间隔,单位:毫秒   retryInterval: 1500   # 密码   password: redis.shbeta   # 单个连接最大订阅数量   subscriptionsPerConnection: 5   # 客户端名称   clientName: axin   #  # 节点地址   address: redis://[email protected]:36479   # 发布和订阅连接的最小空闲连接数   subscriptionConnectionMinimumIdleSize: 1   # 发布和订阅连接池大小   subscriptionConnectionPoolSize: 50   # 最小空闲连接数   connectionMinimumIdleSize: 32   # 连接池大小   connectionPoolSize: 64   # 数据库编号   database: 6   # DNS监测时间间隔,单位:毫秒   dnsMonitoringInterval: 5000 # 线程池数量,默认值: 当前处理核数量 * 2 #threads: 0 # Netty线程池数量,默认值: 当前处理核数量 * 2 #nettyThreads: 0 # 编码 codec: !<org.redisson.codec.JsonJacksonCodec> {} # 传输模式 transportMode : NIO

可以看到我再这里边配置 database: 6 ,当你使用 RedissonClient 时,会操作 redis 的 第6个分区。使用 RedisTemplate 则会操作第7个分区,在生产中最好配置一致。

使用 RedissonClient

@RestController public class RedissonController {      @Autowired     private RedissonClient redissonClient;      @GetMapping(value = /redisson/{key})     public String redissonTest(@PathVariable(key) String lockKey) {         RLock lock = redissonClient.getLock(lockKey);         try {             lock.lock();             Thread.sleep(5000);         } catch (Exception e) {          } finally {             lock.unlock();         }         return 已解锁;     } }

文章参考:

https://github.com/redisson/redisson/tree/master/redisson-spring-boot-starter

https://github.com/redisson/redisson/wiki/2.-Configuration#242-cluster-yaml-config-format