-
Notifications
You must be signed in to change notification settings - Fork 898
用户手册
rongtong edited this page Dec 25, 2019
·
3 revisions
帮助开发者在Spring Boot中快速集成RocketMQ。支持Spring Message规范,方便开发者从其它MQ快速切换到RocketMQ。
- 同步发送
- 异步发送
- one-way发送
- 发送顺序消息
- 批量发送
- 发送事务消息
- 发送延迟消息
- 并发消费(广播/集群)
- 顺序消费
- 支持消息过滤(使用tag/sql)
- 支持消息轨迹
- 认证和授权
- request-reply模式
添加maven依赖:
<!--在pom.xml中添加依赖-->
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-starter</artifactId>
<version>${RELEASE.VERSION}</version>
</dependency>