/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.activemq.artemis.jms.example; import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.MessageProducer; import javax.jms.Session; import javax.jms.TextMessage; import javax.jms.Topic; import javax.jms.TopicSubscriber; import javax.naming.InitialContext; /** * A simple JMS example that shows how to use a durable subscription. */ public class DurableSubscriptionExample { public static void main(final String[] args) throws Exception { Connection connection = null; InitialContext initialContext = null; try { // Step 1. Create an initial context to perform the JNDI lookup. initialContext = new InitialContext(); // Step 2. Look-up the JMS topic Topic topic = (Topic) initialContext.lookup("topic/exampleTopic"); // Step 3. Look-up the JMS connection factory ConnectionFactory cf = (ConnectionFactory) initialContext.lookup("ConnectionFactory"); // Step 4. Create a JMS connection connection = cf.createConnection(); // Step 5. Set the client-id on the connection connection.setClientID("durable-client"); // Step 6. Start the connection connection.start(); // Step 7. Create a JMS session Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); // Step 8. Create a JMS message producer MessageProducer messageProducer = session.createProducer(topic); // Step 9. Create the subscription and the subscriber. TopicSubscriber subscriber = session.createDurableSubscriber(topic, "subscriber-1"); // Step 10. Create a text message TextMessage message1 = session.createTextMessage("This is a text message 1"); // Step 11. Send the text message to the topic messageProducer.send(message1); System.out.println("Sent message: " + message1.getText()); // Step 12. Consume the message from the durable subscription TextMessage messageReceived = (TextMessage) subscriber.receive(); System.out.println("Received message: " + messageReceived.getText()); // Step 13. Create and send another message TextMessage message2 = session.createTextMessage("This is a text message 2"); messageProducer.send(message2); System.out.println("Sent message: " + message2.getText()); // Step 14. Close the subscriber - the server could even be stopped at this point! subscriber.close(); // Step 15. Create a new subscriber on the *same* durable subscription. subscriber = session.createDurableSubscriber(topic, "subscriber-1"); // Step 16. Consume the message messageReceived = (TextMessage) subscriber.receive(); System.out.println("Received message: " + messageReceived.getText()); // Step 17. Close the subscriber subscriber.close(); // Step 18. Delete the durable subscription session.unsubscribe("subscriber-1"); } finally { if (connection != null) { // Step 19. Be sure to close our JMS resources! connection.close(); } if (initialContext != null) { // Step 20. Also close the initialContext! initialContext.close(); } } } }