java实现消息队列的两种方式(小结)

时间:2021-05-19

实现消息队列的两种方式

Apache ActiveMQ官方实例发送消息

直接在Apache官网http://activemq.apache.org/download-archives.html下载ActiveMQ源码

下载解压后拿到java代码实例


然后倒入IDE

如下:


请认真阅读readme.md文件,大致意思就是把项目打成两个jar包,然后启动服务,然后同时运行打的两个jar包,然后就能看到具体的调用信息。打jar包时直接利用maven打就行了,不用修改代码。

启动服务:


利用Spring消息模板发送消息

Spirng对Apache ActiveMQ提供了很好的支持


生成者代码:

package com.jms.service.impl;import com.jms.service.ProducerService;import org.springframework.jms.core.JmsTemplate;import org.springframework.stereotype.Service;import javax.annotation.Resource;import javax.jms.Destination;/** * 发送消息 */@Servicepublic class ProducerServiceImpl implements ProducerService { @Resource private JmsTemplate jmsTemplate; public void sendMessage(Destination destination, String msg) { System.out.println("向队列"+destination+"发送消息"); jmsTemplate.convertAndSend(destination,msg); } public void sendMessage(String msg) { System.out.println("向队列"+jmsTemplate.getDefaultDestination().toString()+"发送消息"); jmsTemplate.convertAndSend(msg); }}

消费者代码:

package com.jms.service.impl;import com.jms.service.CustomerService;import org.springframework.jms.core.JmsTemplate;import org.springframework.stereotype.Service;import javax.annotation.Resource;import javax.jms.Destination;import javax.jms.JMSException;import javax.jms.TextMessage;@Servicepublic class CustomerServiceImpl implements CustomerService { @Resource private JmsTemplate jmsTemplate; /** * 接收消息 * @param destination */ public void receive(Destination destination) { TextMessage textMessage = (TextMessage) jmsTemplate.receive(destination); try { System.out.println("从队列》"+destination.toString()+"成功获取消息》"+textMessage.getText()); } catch (JMSException e) { e.printStackTrace(); } }}

Spring配置代码

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http:///wahnn/SpringJMS

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章