1
キューのメッセージを受信する必要がありますが、このキューはhttps(https://www.mymachine.com/rabbitmq)の別のマシン(AWSインスタンス)にありますが、 NullPointerExceptionRabbitMQ httpsドメインのrabbitMQへのコンシューマ接続
これは、コードの一部です:
factory.setHost(https://www.mymachine.com/rabbitmq);
Connection connection = factory.newConnection();
channel = connection.createChannel();
channel.exchangeDeclare(EXCHANGE_NAME, "fanout");
queueName = channel.queueDeclare().getQueue();
channel.queueBind(queueName, EXCHANGE_NAME, "");