gpt4 book ai didi

java - 使用 JMS 向 RabbitMQ 发送消息

转载 作者:行者123 更新时间:2023-12-02 09:03:14 25 4
gpt4 key购买 nike

我是 RabbitMQ 新手,正在尝试使用 JMS 向 RabbitMQ 发送消息。我有以下标准 JMS 生产者程序:

public void sendMessage() {
Context context = null;
ConnectionFactory factory = null;
Destination destination = null;
Connection connection = null;
Session session = null;
MessageProducer producer = null;

Properties initialProperties = new Properties();
initialProperties.put(InitialContext.INITIAL_CONTEXT_FACTORY, "org.wildfly.naming.client.WildFlyInitialContextFactory");
initialProperties.put(InitialContext.PROVIDER_URL, "http-remoting://IP:PORT");
initialProperties.put(Context.SECURITY_PRINCIPAL, "mquser");
initialProperties.put(Context.SECURITY_CREDENTIALS, "Mquser@123");
try {
context = new InitialContext(initialProperties);
factory = (QueueConnectionFactory) context.lookup("jms/RemoteConnectionFactory");

System.out.println("Lookup Success");
destination = (Destination) context.lookup("jms/queue/TestQueue");
System.out.println("Queue lookup success");
connection = factory.createConnection();
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
producer = session.createProducer(destination);

String text = "8=FIX.4.49=7735=349=A56=B34=352=20200115-13:18:26.000 45=322222=D100208103222223=40558=Invalid FIX2ITFMsgType10=226";
TextMessage textMessage = session.createTextMessage();
textMessage.setText(text);
connection.start();
System.out.println("Going to send");
producer.send(textMessage);
System.out.println(this.getClass().getName() + "has sent a message : " + text);
} catch (NamingException e) {
e.printStackTrace();
} catch (JMSException e) {
e.printStackTrace();
} finally {
if (context != null) {
try {
context.close();
} catch (NamingException ex) {
ex.printStackTrace();
}
}
if (connection != null) {
try {
connection.close();
} catch (JMSException ex) {
ex.printStackTrace();
}
}
}
}

我正在使用它向 JBoss EAP 7.2 中嵌入的 ActiveMQ Artemis 发送消息。正如我在 this link 中发现的那样我将无法使用上面的程序向 RabbitMQ 发送消息,但可以使用以下参数:

  1. 用户名
  2. 密码
  3. 虚拟主机
  4. 主持人
  5. 端口
  6. 目的地名称
  7. 交易所名称
  8. 队列名称
  9. 路由键

谁能给我一个向 RabbitMQ 发送消息的标准程序示例。我正在使用 Spring Boot,也可以使用它的功能。

最佳答案

Spring Boot提供了RabbitTemplate,可以轻松发送消息:

@Component
public class Example {

private final RabbitTemplate rabbitTemplate;

public Example(RabbitTemplate rabbitTemplate) {
this.rabbitTemplate = rabbitTemplate;
}

@Override
public void run(String... args) throws Exception {
rabbitTemplate.convertAndSend(MessagingRabbitmqApplication.topicExchangeName, "foo.bar.baz", "Hello from RabbitMQ!");
}

请查看教程 https://spring.io/guides/gs/messaging-rabbitmq/

另请阅读 Spring Boot 文档:https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-amqp

关于java - 使用 JMS 向 RabbitMQ 发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60015645/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com