博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot非官方教程 | 第十四篇:在springboot中用redis实现消息队列
阅读量:5986 次
发布时间:2019-06-20

本文共 2377 字,大约阅读时间需要 7 分钟。

这篇文章主要讲述如何在springboot中用reids实现消息队列。

准备阶段

安装redis,可参考我的另一篇文章,5分钟带你入门Redis。java 1.8maven 3.0idea

环境依赖

创建一个新的springboot工程,在其pom文件,加入spring-boot-starter-data-redis依赖:

org.springframework.boot
spring-boot-starter-data-redis

创建一个消息接收者

REcevier类,它是一个普通的类,需要注入到springboot中。

public class Receiver {    private static final Logger LOGGER = LoggerFactory.getLogger(Receiver.class);    private CountDownLatch latch;    @Autowired    public Receiver(CountDownLatch latch) {        this.latch = latch;    }    public void receiveMessage(String message) {        LOGGER.info("Received <" + message + ">");        latch.countDown();    }}

注入消息接收者

@BeanReceiver receiver(CountDownLatch latch) {    return new Receiver(latch);}@BeanCountDownLatch latch() {    return new CountDownLatch(1);}@BeanStringRedisTemplate template(RedisConnectionFactory connectionFactory) {    return new StringRedisTemplate(connectionFactory);}

注入消息监听容器

在spring data redis中,利用redis发送一条消息和接受一条消息,需要三样东西:

一个连接工厂一个消息监听容器Redis template

上述1、3步已经完成,所以只需注入消息监听容器即可:

@Bean    RedisMessageListenerContainer container(RedisConnectionFactory connectionFactory,                                            MessageListenerAdapter listenerAdapter) {        RedisMessageListenerContainer container = new RedisMessageListenerContainer();        container.setConnectionFactory(connectionFactory);        container.addMessageListener(listenerAdapter, new PatternTopic("chat"));        return container;    }   @Bean    MessageListenerAdapter listenerAdapter(Receiver receiver) {        return new MessageListenerAdapter(receiver, "receiveMessage");    }

测试

在springboot入口的main方法:

public static void main(String[] args) throws Exception{        ApplicationContext ctx =  SpringApplication.run(SpringbootRedisApplication.class, args);        StringRedisTemplate template = ctx.getBean(StringRedisTemplate.class);        CountDownLatch latch = ctx.getBean(CountDownLatch.class);        LOGGER.info("Sending message...");        template.convertAndSend("chat", "Hello from Redis!");        latch.await();        System.exit(0);    }

先用redisTemplate发送一条消息,接收者接收到后,打印出来。启动springboot程序,控制台打印:

2017-04-20 17:25:15.536 INFO 39148 — [ main] com.forezp.SpringbootRedisApplication : Sending message…2017-04-20 17:25:15.544 INFO 39148 — [ container-2] com.forezp.message.Receiver : 》Received

源码下载:

参考资料

转载地址:http://uaylx.baihongyu.com/

你可能感兴趣的文章
sql重写后比较是否一致
查看>>
python模块pymysql
查看>>
IOS UIScrollView详解 & 图片缩放功能
查看>>
正确计算linux系统内存使用率
查看>>
CentOS7同步远程yum源到本地
查看>>
域名服务器配置文件 /etc/resolv.conf
查看>>
What is Keepalived ?
查看>>
.on()的学习心得
查看>>
sqlserver 计算数据库时间差
查看>>
我的.Bashrc配置文件
查看>>
求图的最小生成树
查看>>
11.1time模块
查看>>
TSQL语句练习题
查看>>
C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 访问记录功能改进
查看>>
硬盘基本知识(一)
查看>>
linux--DNS解析
查看>>
第一章 Java EE 概述
查看>>
CSS的选择器
查看>>
linux文件属性
查看>>
rpm与yum详解
查看>>