/* * 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 java.util.HashMap; import javax.jms.MessageConsumer; import javax.jms.MessageProducer; import javax.jms.Queue; import javax.jms.QueueConnection; import javax.jms.QueueConnectionFactory; import javax.jms.QueueSession; import javax.jms.Session; import javax.jms.TextMessage; import javax.management.MBeanServerConnection; import javax.management.MBeanServerInvocationHandler; import javax.management.ObjectName; import javax.management.remote.JMXConnector; import javax.management.remote.JMXConnectorFactory; import javax.management.remote.JMXServiceURL; import javax.naming.InitialContext; import org.hornetq.api.core.management.ObjectNameBuilder; import org.hornetq.api.jms.management.JMSQueueControl; import org.hornetq.common.example.HornetQExample; /** * An example that shows how to manage HornetQ using JMX. * * @author <a href="mailto:jmesnil@redhat.com">Jeff Mesnil</a> */ public class JMXExample extends HornetQExample { private static final String JMX_URL = "service:jmx:rmi:///jndi/rmi://localhost:3000/jmxrmi"; public static void main(final String[] args) { new JMXExample().run(args); } @Override public boolean runExample() throws Exception { QueueConnection connection = null; InitialContext initialContext = null; try { // Step 1. Create an initial context to perform the JNDI lookup. initialContext = getContext(0); // Step 2. Perfom a lookup on the queue Queue queue = (Queue)initialContext.lookup("/queue/exampleQueue"); // Step 3. Perform a lookup on the Connection Factory QueueConnectionFactory cf = (QueueConnectionFactory)initialContext.lookup("/ConnectionFactory"); // Step 4.Create a JMS Connection connection = cf.createQueueConnection(); // Step 5. Create a JMS Session QueueSession session = connection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE); // Step 6. Create a JMS Message Producer MessageProducer producer = session.createProducer(queue); // Step 7. Create a Text Message TextMessage message = session.createTextMessage("This is a text message"); System.out.println("Sent message: " + message.getText()); // Step 8. Send the Message producer.send(message); // Step 9. Retrieve the ObjectName of the queue. This is used to identify the server resources to manage ObjectName on = ObjectNameBuilder.DEFAULT.getJMSQueueObjectName(queue.getQueueName()); // Step 10. Create JMX Connector to connect to the server's MBeanServer JMXConnector connector = JMXConnectorFactory.connect(new JMXServiceURL(JMXExample.JMX_URL), new HashMap()); // Step 11. Retrieve the MBeanServerConnection MBeanServerConnection mbsc = connector.getMBeanServerConnection(); // Step 12. Create a JMSQueueControl proxy to manage the queue on the server JMSQueueControl queueControl = (JMSQueueControl)MBeanServerInvocationHandler.newProxyInstance(mbsc, on, JMSQueueControl.class, false); // Step 13. Display the number of messages in the queue System.out.println(queueControl.getName() + " contains " + queueControl.getMessageCount() + " messages"); // Step 14. Remove the message sent at step #8 System.out.println("message has been removed: " + queueControl.removeMessage(message.getJMSMessageID())); // Step 15. Display the number of messages in the queue System.out.println(queueControl.getName() + " contains " + queueControl.getMessageCount() + " messages"); // Step 16. We close the JMX connector connector.close(); // Step 17. Create a JMS Message Consumer on the queue MessageConsumer messageConsumer = session.createConsumer(queue); // Step 18. Start the Connection connection.start(); // Step 19. Trying to receive a message. Since the only message in the queue was removed by a management // operation, there is none to consume. // The call will timeout after 5000ms and messageReceived will be null TextMessage messageReceived = (TextMessage)messageConsumer.receive(5000); System.out.println("Received message: " + messageReceived); return true; } finally { // Step 20. Be sure to close the resources! if (initialContext != null) { initialContext.close(); } if (connection != null) { connection.close(); } } } }