資料內(nèi)容:
2. 使用步驟
2.1 添加依賴
首先,在Spring Boot項(xiàng)目的 pom.xml 文件中添加RabbitMQ的依賴。
<dependencies>
<!-- Spring Boot RabbitMQ Starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
<!-- 其他依賴... -->
</dependencies>
2.2 配置RabbitMQ
在 application.properties 或 application.yml 文件中配置RabbitMQ的連接信息。
application.properties 示例:
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=guest
spring.rabbitmq.password=guest
或者,如果你使用 application.yml ,則配置如下:
spring:
rabbitmq:
host: localhost
port: 5672
username: guest
password: guest
2.3 創(chuàng)建消息發(fā)送者
接下來,我們將創(chuàng)建一個(gè)消息發(fā)送者,使用RabbitTemplate來發(fā)送消息。
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class MessageSender {
@Autowired
private RabbitTemplate rabbitTemplate;
// 發(fā)送消息到名為"hello"的隊(duì)列
public void send(String message) {
rabbitTemplate.convertAndSend("hello", message);
}
}