5

我现在开始 JMS 一个星期了。我使用 Netbeans、maven 和 glassfish 创建了 JMS。

我有一个生产者一个持久消费者,我想在同一主题中添加另一个持久消费者(而不是队列)。有可能这样做吗?因为我希望所有消费者都消费生产者发送的所有消息,无论消费者是否离线。

有什么建议吗?谢谢

public class DurableReceive {

@Resource(lookup = "jms/myDurableConnectionFactory")
private static ConnectionFactory connectionFactory;

@Resource(lookup = "jms/myNewTopic")
private static Topic topic;

public static void main(String[] args) {
    Destination dest = (Destination) topic;
    JMSConsumer consumer;
    boolean messageReceived = false;
    String message;
    System.out.println("Waiting for messages...");

    try (JMSContext context = connectionFactory.createContext();) {
        consumer = context.createDurableConsumer(topic, "Subscriber1");
        while (!messageReceived) {
            message = consumer.receiveBody(String.class);
            if (message != null) {
                System.out.print("Received the following message: " + message);
                System.out.println("(Received date: " + new Date() + ")\n");
            } else {
                messageReceived = true;
            }
        }
    } catch (JMSRuntimeException e) {
        System.err.println("@#$%RuntimeException occurred: " + e.toString());
        System.exit(1);
    }
}

}

4

1 回答 1

1

您可以为不同的持久消费者设置不同的clientID。Jms-broker 使用 subscriptionName 和 clientId 的组合来识别唯一的客户端(因此,如果您的订阅者具有唯一的 clientID - 它可以接收自己的消息)。您可以在 JmsContext 中设置 clientID。

于 2014-09-19T03:19:24.170 回答