/* * Copyright 2009 Red Hat, Inc. * Red Hat 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.hornetq.jms.example; import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.JMSException; import javax.jms.Message; import javax.jms.MessageConsumer; import javax.jms.MessageListener; import javax.jms.MessageProducer; import javax.jms.Queue; import javax.jms.Session; import javax.jms.TextMessage; import javax.naming.InitialContext; import org.hornetq.common.example.HornetQExample; /** * A simple JMS example that uses selectors with queue consumers. * * @author <a href="hgao@redhat.com">Howard Gao</a> */ public class QueueSelectorExample extends HornetQExample { private volatile boolean result = true; public static void main(final String[] args) { new QueueSelectorExample().run(args); } @Override public boolean runExample() throws Exception { Connection connection = null; InitialContext initialContext = null; try { // Step 1. Create an initial context to perform the JNDI lookup. initialContext = getContext(0); // Step 2. look-up the JMS queue object from JNDI Queue queue = (Queue)initialContext.lookup("/queue/exampleQueue"); // Step 3. look-up the JMS connection factory object from JNDI ConnectionFactory cf = (ConnectionFactory)initialContext.lookup("/ConnectionFactory"); // Step 4. Create a JMS Connection connection = cf.createConnection(); // Step 5. Start the connection connection.start(); // Step 5. Create a JMS Session Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); // Step 6. Create a JMS Message Producer MessageProducer producer = session.createProducer(queue); // Step 8. Prepare two selectors String redSelector = "color='red'"; String greenSelector = "color='green'"; // Step 9. Create a JMS Message Consumer that receives 'red' messages MessageConsumer redConsumer = session.createConsumer(queue, redSelector); redConsumer.setMessageListener(new SimpleMessageListener("red")); // Step 10. Create a second JMS message consumer that receives 'green' messages MessageConsumer greenConsumer = session.createConsumer(queue, greenSelector); greenConsumer.setMessageListener(new SimpleMessageListener("green")); // Step 11. Create another JMS message consumer that receives any messages. MessageConsumer anyConsumer = session.createConsumer(queue); anyConsumer.setMessageListener(new SimpleMessageListener("any")); // Step 12. Create three messages, each has a color property TextMessage redMessage = session.createTextMessage("Red"); redMessage.setStringProperty("color", "red"); TextMessage greenMessage = session.createTextMessage("Green"); greenMessage.setStringProperty("color", "green"); TextMessage blueMessage = session.createTextMessage("Blue"); blueMessage.setStringProperty("color", "blue"); // Step 13. Send the Messages producer.send(redMessage); System.out.println("Message sent: " + redMessage.getText()); producer.send(greenMessage); System.out.println("Message sent: " + greenMessage.getText()); producer.send(blueMessage); System.out.println("Message sent: " + blueMessage.getText()); Thread.sleep(5000); return result; } finally { // Step 12. Be sure to close our JMS resources! if (initialContext != null) { initialContext.close(); } if (connection != null) { connection.close(); } } } public class SimpleMessageListener implements MessageListener { private final String name; public SimpleMessageListener(final String listener) { name = listener; } public void onMessage(final Message msg) { TextMessage textMessage = (TextMessage)msg; try { String colorProp = msg.getStringProperty("color"); System.out.println("Receiver " + name + " receives message [" + textMessage.getText() + "] with color property: " + colorProp); if (!colorProp.equals(name) && !name.equals("any")) { result = false; } } catch (JMSException e) { e.printStackTrace(); result = false; } } } }