/src/main/java/id/bri/switching/mq/MQClient.java

https://gitlab.com/intruxxer/PointRedemptionApp · Java · 126 lines · 70 code · 21 blank · 35 comment · 5 complexity · d3ca941b1be74912abda9ba35a454b4a MD5 · raw file

  1. /**
  2. * MQClient
  3. *
  4. * Class yang berfungsi untuk mengirimkan pesan ke prosw melalui MQ
  5. *
  6. * @package id.bri.switching.mq
  7. * @author PSD Team
  8. * @copyright Copyright (c) 2013, PT. Bank Rakyat Indonesia (Persero) Tbk,
  9. */
  10. // ---------------------------------------------------------------------------------
  11. /*
  12. * ------------------------------------------------------
  13. * Memuat package dan library
  14. * ------------------------------------------------------
  15. */
  16. package id.bri.switching.mq;
  17. import org.apache.activemq.ActiveMQConnectionFactory;
  18. import id.bri.switching.helper.LogLoader;
  19. import javax.jms.MessageListener;
  20. import javax.jms.MessageProducer;
  21. import javax.jms.MessageConsumer;
  22. import javax.jms.Connection;
  23. import javax.jms.Session;
  24. import javax.jms.DeliveryMode;
  25. import javax.jms.Destination;
  26. import javax.jms.JMSException;
  27. import javax.jms.Message;
  28. import javax.jms.TextMessage;
  29. import java.io.IOException;
  30. import java.util.Random;
  31. public class MQClient implements MessageListener {
  32. private MessageProducer producer;
  33. private Connection connection;
  34. private Session session;
  35. public void openConnection(String mqUrl) throws JMSException {
  36. try {
  37. // Koneksi ke activemq
  38. ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(mqUrl);
  39. this.connection = connectionFactory.createConnection();
  40. this.connection.start();
  41. } catch (JMSException e) {
  42. if (e.getLinkedException() instanceof IOException) {
  43. // ActiveMQ is not running. Do some logic here.
  44. // use the TransportListener to restart the activeMQ connection
  45. // when activeMQ comes back up.
  46. } else if (e.getMessage().contains("Connection refused")) {
  47. LogLoader.setError(MQServer.class.getSimpleName(), "Cannot connect to MQ, connection refused");
  48. } else {
  49. LogLoader.setError(MQServer.class.getSimpleName(), "Cannot connect to MQ, error unknown");
  50. }
  51. }
  52. }
  53. public void setupMessageProducer(String clientQueueName, String message) {
  54. try {
  55. this.session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
  56. Destination adminQueue = session.createQueue(clientQueueName);
  57. //Setup a message producer to send message to the queue the server is consuming from
  58. this.producer = session.createProducer(adminQueue);
  59. //this.producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
  60. this.producer.setDeliveryMode(DeliveryMode.PERSISTENT);
  61. //Create a temporary queue that this client will listen for responses on then create a consumer
  62. //that consumes message from this temporary queue...for a real application a client should reuse
  63. //the same temp queue for each message to the server...one temp queue per client
  64. Destination tempDest = session.createTemporaryQueue();
  65. MessageConsumer responseConsumer = session.createConsumer(tempDest);
  66. //This class will handle the messages to the temp queue as well
  67. responseConsumer.setMessageListener(this);
  68. //Now create the actual message you want to send
  69. TextMessage txtMessage = session.createTextMessage();
  70. txtMessage.setText(message);
  71. //Set the reply to field to the temp queue you created above, this is the queue the server
  72. //will respond to
  73. txtMessage.setJMSReplyTo(tempDest);
  74. //Set a correlation ID so when you get a response you know which sent message the response is for
  75. //If there is never more than one outstanding message to the server then the
  76. //same correlation ID can be used for all the messages...if there is more than one outstanding
  77. //message to the server you would presumably want to associate the correlation ID with this
  78. //message somehow...a Map works good
  79. String correlationId = this.createRandomString();
  80. txtMessage.setJMSCorrelationID(correlationId);
  81. this.producer.send(txtMessage);
  82. } catch (JMSException e) {
  83. //Handle the exception appropriately
  84. LogLoader.setError(MQClient.class.getSimpleName(), e);
  85. }
  86. }
  87. private String createRandomString() {
  88. Random random = new Random(System.currentTimeMillis());
  89. long randomLong = random.nextLong();
  90. return Long.toHexString(randomLong);
  91. }
  92. public void onMessage(Message message) {
  93. String messageText = null;
  94. try {
  95. if (message instanceof TextMessage) {
  96. TextMessage textMessage = (TextMessage) message;
  97. messageText = textMessage.getText();
  98. LogLoader.setInfo(MQClient.class.getSimpleName(), "messageText = " + messageText);
  99. }
  100. } catch (JMSException e) {
  101. //Handle the exception appropriately
  102. LogLoader.setError(MQClient.class.getSimpleName(), e);
  103. }
  104. }
  105. }