Java tutorial
/** * Copyright 2016 Nuuptech * * Licensed 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 com.estafeta.flujos; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.Message; import javax.jms.Session; import org.apache.activemq.command.ActiveMQQueue; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jms.core.JmsTemplate; import org.springframework.jms.core.MessageCreator; import org.springframework.stereotype.Service; @Service public class JmsMessageSender { @Autowired private JmsTemplate jmsTemplate; public void setJmsTemplate(JmsTemplate jmsTemplate) { this.jmsTemplate = jmsTemplate; } public JmsTemplate getJmsTemplate() { return this.jmsTemplate; } /** * send text to default destination * @param text */ public void send(final String text) { this.jmsTemplate.send(new MessageCreator() { @Override public Message createMessage(Session session) throws JMSException { Message message = session.createTextMessage(text); message.setJMSType("xml"); //set ReplyTo header of Message, pretty much like the concept of email. //message.setJMSReplyTo(new ActiveMQQueue("Recv2Send")); return message; } }); } /** * Simplify the send by using convertAndSend * @param text */ public void sendText(final String text) { this.jmsTemplate.convertAndSend(text); } /** * Send text message to a specified destination * @param text */ public void send(final Destination dest, final String text) { this.jmsTemplate.send(dest, new MessageCreator() { @Override public Message createMessage(Session session) throws JMSException { Message message = session.createTextMessage(text); return message; } }); } }