91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用spring boot如何實現對RabbitMQ進行整合

發布時間:2020-11-18 15:04:09 來源:億速云 閱讀:145 作者:Leah 欄目:編程語言

使用spring boot如何實現對RabbitMQ進行整合?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

springboot集成RabbitMQ非常簡單,如果只是簡單的使用配置非常少,springboot提供了spring-boot-starter-amqp項目對消息各種支持。

1.新建一個Spring Boot工程,命名為:“rabbitmq-hello”。

在pom.xml中引入如下依賴內容,其中spring-boot-starter-amqp用于支持RabbitMQ。

 <dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-amqp</artifactId>
 </dependency> 

2.在application.properties中配置關于RabbitMQ的連接和用戶信息,用戶可以回到上面的安裝內容,在管理頁面中創建用戶。

spring.application.name=rabbitmq-hello
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=admin
spring.rabbitmq.password=123456

3.創建消息生產者Sender。通過注入AmqpTemplate接口的實例來實現消息的發送,AmqpTemplate接口定義了一套針對AMQP協議的基礎操作。

在Spring Boot中會根據配置來注入其具體實現。在該生產者,我們會產生一個字符串,并發送到名為hello的隊列中。

@Component
public class Sender {
 @Autowired
 private AmqpTemplate rabbitTemplate;
 public void send() {
  String context = "hello " + new Date();
  System.out.println("Sender : " + context);
  this.rabbitTemplate.convertAndSend("hello", context);
 }
}

4.創建消息消費者Receiver。

通過@RabbitListener注解定義該類對hello隊列的監聽,并用@RabbitHandler注解來指定對消息的處理方法。所以,該消費者實現了對hello隊列的消費,消費操作為輸出消息的字符串內容。

@Component
@RabbitListener(queues = "hello")
public class Receiver {
 @RabbitHandler
 public void process(String hello) {
  System.out.println("Receiver : " + hello);
 }
}

5.創建RabbitMQ的配置類RabbitConfig,用來配置隊列、交換器、路由等高級信息。這里我們以入門為主,先以最小化的配置來定義,以完成一個基本的生產和消費過程。

@Configuration
public class RabbitConfig {
 @Bean
 public Queue helloQueue() {
  return new Queue("hello");
 }
}

6.創建應用主類:

@SpringBootApplication
public class HelloApplication {
 public static void main(String[] args) {
  SpringApplication.run(HelloApplication.class, args);
 }
}

7.創建單元測試類,用來調用消息生產:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = HelloApplication.class)
public class HelloApplicationTests {
  @Autowired
  private Sender sender;
  @Test
  public void hello() throws Exception {
    sender.send();
  }
}

8.啟動應用主類,從控制臺中,我們看到如下內容,程序創建了一個訪問127.0.0.1:5672中admin的連接。

o.s.a.r.c.CachingConnectionFactory    : Created new connection: SimpleConnection@29836d32 [delegate=amqp://admin@127.0.0.1:5672/]

同時,我們通過RabbitMQ的控制面板,可以看到Connection和Channels中包含當前連接的條目。

9.運行單元測試類,我們可以看到控制臺中輸出下面的內容,消息被發送到了RabbitMQ Server的hello隊列中。

Sender : hello Sun Sep 25 11:06:11 CST 2016

10.切換到應用主類的控制臺,我們可以看到類似如下輸出,消費者對hello隊列的監聽程序執行了,并輸出了接受到的消息信息。

Receiver : hello Sun Sep 25 11:06:11 CST 2016

通過上面的示例,我們在Spring Boot應用中引入spring-boot-starter-amqp模塊,進行簡單配置就完成了對RabbitMQ的消息生產和消費的開發內容。

需要注意的地方,Direct模式相當于一對一模式,一個消息被發送者發送后,會被轉發到一個綁定的消息隊列中,然后被一個接收者接收!

實際上RabbitMQ還可以支持發送對象:當然由于涉及到序列化和反序列化,該對象要實現Serilizable接口.HelloSender做出如下改寫:

public void send() {
  User user=new User();  //實現Serializable接口
  user.setUsername("hlhdidi");
  user.setPassword("123");
  template.convertAndSend("queue",user);
}
HelloReceiver做出如下改寫:
@RabbitListener(queues="queue")  //監聽器監聽指定的Queue
public void process1(User user) {  //用User作為參數
  System.out.println("Receive1:"+user);
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

余姚市| 栾川县| 剑阁县| 德钦县| 青海省| 宁德市| 兴文县| 高邮市| 神农架林区| 临夏市| 金坛市| 雷州市| 靖州| 如东县| 夏津县| 湄潭县| 葵青区| 磐石市| 长岭县| 华宁县| 连平县| 富源县| 惠水县| 高安市| 长葛市| 宁德市| 安徽省| 叶城县| 凤山县| 漯河市| 凤山市| 长泰县| 巩留县| 资溪县| 礼泉县| 五大连池市| 扎兰屯市| 安岳县| 策勒县| 宜黄县| 宁乡县|