一、Redisson 是什么?
来看看百度百科怎么说的。
Redisson是架设在Redis基础上的一个Java驻内存数据网格(In-Memory Data Grid
)。【Redis官方推荐】
Redisson在基于NIO的 Netty 框架上,充分的利用了Redis键值数据库提供的一系列优势,在Java实用工具包中常用接口的基础上,为使用者提供了一系列具有分布式特性的常用工具类。使得原本作为协调单机多线程并发程序的工具包获得了协调分布式多机多线程并发系统的能力,大大降低了设计和研发大规模分布式系统的难度。同时结合各富特色的分布式服务,更进一步简化了分布式环境中程序相互之间的协作。
然后【Redisson官方WiKi】
是这样说的
Redisson 不仅提供了一系列的分布式的Java常用对象,还提供了许多分布式服务。其中包括(BitSet, Set, Multimap, SortedSet, Map, List, Queue, BlockingQueue, Deque, BlockingDeque, Semaphore, Lock, AtomicLong, CountDownLatch, Publish / Subscribe, Bloom filter, Remote service, Spring cache, Executor service, Live Object service, Scheduler service
) Redisson提供了使用Redis的最简单和最便捷的方法。Redisson的宗旨是促进使用者对Redis的关注分离(Separation of Concern),从而让使用者能够将精力更集中地放在处理业务逻辑上。
功能太强大了,我都有点不会用了!!!
二、开始使用
1、导入依赖
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| <!-- redis --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> </dependency> <!-- redisson --> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>3.11.0</version> </dependency>
|
2 、配置文件配置Redis
Springboot2 中,redis 默认用的是lettuce
连接池
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| spring: # redis config redis: host: 127.0.0.1 password: port: 6379 database: 0 lettuce: pool: max-idle: 8 min-idle: 0 max-active: 8 max-wait: -1ms timeout: 10000ms
|
3、配置Redisson
有两种方法
第一种:程序化配置方法
1 2 3 4 5
| Config config = new Config(); config.setTransportMode(TransportMode.EPOLL); config.useClusterServers() //可以用"rediss://"来启用SSL连接 .addNodeAddress("redis://127.0.0.1:7181");
|
第二种:文件方式配置
1 2 3 4 5 6 7
| // json 文件 Config config = Config.fromJSON(new File("config-file.json")); RedissonClient redisson = Redisson.create(config);
# yaml 文件 Config config = Config.fromYAML(new File("config-file.yaml")); RedissonClient redisson = Redisson.create(config);
|
配置文件的具体内容,就不多介绍了,官方的听详细的,下面给传送门
点我带你飞:传送门
我个人比较喜欢程序化方式,全部代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| package top.lrshuai.redisson.config;
import org.redisson.Redisson; import org.redisson.api.RedissonClient; import org.redisson.config.Config; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.util.StringUtils;
@Configuration public class RedissonConfig {
@Value("${spring.redis.host}") private String host;
@Value("${spring.redis.port}") private String port;
@Value("${spring.redis.password}") private String password;
@Bean public RedissonClient redissonClient(){ Config config = new Config(); config.useSingleServer().setAddress("redis://" + host + ":" + port); if(StringUtils.isEmpty(password)){ config.useSingleServer().setPassword(null); }else{ config.useSingleServer().setPassword(password); }
return Redisson.create(config); } }
|
以Bean
的方式注入,然后在想用的地方创建一个变量即可
4、代码使用Redisson
1 2 3
| @Autowired private RedissonClient redissonClient;
|
三、Redisson 分布式锁的简单使用
什么是分布式锁?分布式锁有什么作用?分布式锁怎么用?
个人见解:学过多线程的应该知道,共享变量,如果不加锁的话,当多个线程去操作的时候就有可能导致数据的不一致性等问题。所以Java 本身给我们提供了Synchronized
关键字或者 Lock
锁,都可以处理这种问题。这种方式只针对单台服务器而言的,像双十一
、618
这种大型活动,肯定不是只有一台服务器就能带飞的,走都不一定能走,别说飞了。当采用分布式系统多台服务器运行的时候,上面的锁方案就不靠谱了。所以分布式锁出来了。
百度百科:
分布式锁是控制分布式系统之间同步访问共享资源的一种方式。在分布式系统中,常常需要协调他们的动作。如果不同的系统或是同一个系统的不同主机之间共享了一个或一组资源,那么访问这些资源的时候,往往需要互斥来防止彼此干扰来保证一致性,在这种情况下,便需要使用到分布式锁。
废话真多,代码撸起
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
@GetMapping("/test") public Object test(){ RLock rLock = redissonClient.getLock(lock); boolean isLock =false; try { isLock = rLock.tryLock(); System.out.println(Thread.currentThread().getName()+"isLock="+isLock); if (isLock) { System.out.println(Thread.currentThread().getName()+"我抢到锁了,开心,先休息10秒先"); Thread.sleep(10 *1000); }else { System.out.println(Thread.currentThread().getName()+"被人锁了,郁闷下次再来"); return FAILED; } } catch (InterruptedException e) { e.printStackTrace(); } finally { if(isLock){ System.out.println(Thread.currentThread().getName()+"不玩了,开锁了!!!"); rLock.unlock(); } } return SUCCESS; }
|
Redisson 提供的锁有那么几个,按需使用
- 可重入锁
- 公平锁
- 联锁
- 红锁
- 读写锁
- 闭锁
各个锁的使用Wiki 都有介绍,我只是粗略的开个头。
四、Redisson消息的发布订阅
这个简单,一个发布,一个接受,简单代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| public long publish(MyObjectDTO myObjectDTO){ RTopic rTopic = redissonClient.getTopic(Consts.TopicName); return rTopic.publish(myObjectDTO); }
public void subscribe(){ RTopic rTopic = redissonClient.getTopic(Consts.TopicName); rTopic.addListener(MyObjectDTO.class, new MessageListener<MyObjectDTO>() { @Override public void onMessage(CharSequence charSequence, MyObjectDTO myObjectDTO) { log.info("接受到消息主题={},内容={}",charSequence,myObjectDTO); System.out.println("传输的数据为="+myObjectDTO); } }); }
|
MyObjectDTO
就是发布的消息体,随意一个对象就行,命名有点LOW
完整代码地址