java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Spring Boot消息发送接收

Spring Boot实现消息的发送和接收使用实战指南

作者:刘凤贵

这篇文章主要为大家介绍了Spring Boot实现消息的发送和接收使用实战指南,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

正文

当涉及到消息发送和接收的场景时,可以使用Spring Boot和消息中间件RabbitMQ来实现。下面是一个简单的示例代码,展示了如何在Spring Boot应用程序中创建消息发送者和接收者,并发送和接收一条消息

准备工作

首先,你需要进行以下准备工作

编写代码

现在,让我们来编写代码

import org.springframework.amqp.core.Queue;
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;
    public void sendMessage(String message) {
        rabbitTemplate.convertAndSend("queue_email", message);
        System.out.println("Message sent: " + message);
    }
}
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;
@Component
public class MessageReceiver {
    @RabbitListener(queues = "queue_email")
    public void receiveMessage(String message) {
        System.out.println("Message received: " + message);
    }
}
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=guest
spring.rabbitmq.password=guest

以上代码示例中使用了RabbitMQ作为消息中间件,你可以根据自己的需求选择其他消息中间件,并相应地更改配置。

配置指定的队列

import org.springframework.amqp.core.Queue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class RabbitMQConfig {
 @Bean
 public Queue queue() {
     return new Queue("queue_email");
 }
}

现在你可以在应用程序的其他地方使用MessageSender类发送消息,例如在某个控制器中:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MessageController {
    @Autowired
    private MessageSender messageSender;
    @GetMapping("/send-message")
    public String sendMessage() {
        messageSender.sendMessage("Hello, World!");
        return "Message sent";
    }
}

当你运行这个Spring Boot应用程序时,可以通过访问/send-message端点来发送一条消息。这条消息将被发送到名为queue_email的队列中,并由MessageReceiver类中的receiveMessage方法接收和处理。

这是一个简单的示例,用于演示如何在Spring Boot应用程序中发送和接收消息。可以根据实际需求进行修改和扩展,添加更多的功能和业务逻辑。

您可能感兴趣的文章:
阅读全文