Java tutorial
/* * The MIT License * * Copyright (c) 2016, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.easybatch.tutorials.advanced.jms; import org.apache.activemq.broker.BrokerService; import org.apache.commons.io.FileUtils; import org.easybatch.core.record.StringRecord; import org.easybatch.jms.JmsPoisonMessage; import javax.jms.*; import javax.naming.Context; import javax.naming.InitialContext; import java.io.File; import java.util.Properties; /** * JMS Utilities class. */ public class JMSUtil { public static QueueConnectionFactory queueConnectionFactory; public static Queue queue; private static QueueSender queueSender; private static QueueSession queueSession; private static BrokerService broker; public static void initJMSFactory() throws Exception { Properties p = new Properties(); p.load(JMSUtil.class.getResourceAsStream(("/org/easybatch/tutorials/advanced/jms/jndi.properties"))); Context jndiContext = new InitialContext(p); queueConnectionFactory = (QueueConnectionFactory) jndiContext.lookup("QueueConnectionFactory"); queue = (Queue) jndiContext.lookup("q"); QueueConnection queueConnection = queueConnectionFactory.createQueueConnection(); queueSession = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE); queueSender = queueSession.createSender(queue); queueConnection.start(); } public static void startEmbeddedBroker() throws Exception { broker = new BrokerService(); broker.addConnector("tcp://localhost:61616"); broker.start(); } public static void sendStringRecord(String jmsMessage) throws JMSException { TextMessage message = queueSession.createTextMessage(); message.setText(jmsMessage); queueSender.send(message); System.out.println("Message '" + jmsMessage + "' sent to JMS queue"); } public static void sendStringRecord(StringRecord stringRecord) throws JMSException { TextMessage message = queueSession.createTextMessage(); message.setText(stringRecord.getPayload()); queueSender.send(message); System.out.println("Message '" + stringRecord.getPayload() + "' sent to JMS queue"); } public static void sendPoisonRecord() throws JMSException { queueSender.send(new JmsPoisonMessage()); System.out.println("Poison record sent to JMS queue"); } public static void stopEmbeddedBroker() throws Exception { File brokerDataDirectoryFile = broker.getDataDirectoryFile(); broker.stop(); FileUtils.deleteDirectory(brokerDataDirectoryFile); } public static QueueConnectionFactory getQueueConnectionFactory() { return queueConnectionFactory; } public static Queue getQueue() { return queue; } }