热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

ActiveMQ整合Spring入门用法解析

这篇文章主要介绍了ActiveMQ整合Spring入门用法解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

一.ActiveMQ整合Spring基础

  ActiveMQ和Spring的整合,其实是把activemq的一些对象交给spring来管理,比如连接工厂,queue,top等等

二.依赖

  除了activemq本身提供的jar包外,还需要两个spring整合activemq的jar:


      org.springframework
      spring-jms
    
    
      org.springframework
      spring-context-support
    
    
    
      org.apache.activemq
      activemq-all
    

三.在spring配置文件中,配置activemq相关的对象

  》生产者需要配置的对象:activemq原生连接工厂,spring包装过的工厂,JmsTemplate(生产者),queue,topic



  




  
  




  
  
  




  




  

  测试代码:

//测试生产者发生queue
  @Test
  public void testJMSTemplateByQueue() throws Exception {
    
    //创建spring容器
    ApplicationContext ioc = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");
    
    //获取jmstemplate
    JmsTemplate jmsTemplate = ioc.getBean(JmsTemplate.class);
    
    //获取目的对象
    Destination queue = (Destination) ioc.getBean("queueDestination");
    
    //发送消息,并设置目的对象和消息
    jmsTemplate.send(queue,new MessageCreator() {
      
      public Message createMessage(Session session) throws JMSException {
        
        TextMessage message = session.createTextMessage();
        
        message.setText("hello spring activemq");
        
        return message;
      }
    });

  小结:生产者是需要在特定的时间发送指定的消息内容,因此是需要书写代码的

  》消费者需要配置的对象:activemq原生连接工厂,spring包装过的工厂,监听容器(消费者),监听器,queue,topic

  》之前监听器我们是直接实现匿名内部类的方式,但是在spring这就不能了,还是书写一个实现类并继承messageListener接口



  




  
  







  
  
  
  
  
  




  




  

  测试代码:

@Test
  public void testListener() throws IOException {
    ApplicationContext ioc = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");
    System.in.read();
  }

  小结:我们的测试代码很简单,只要把容器启动了,监听器就会一致监听着。不需要写任何代码,监听器只要一直关注目的对象Destination是否有消息发送过来

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


推荐阅读
author-avatar
mobiledu2502852497
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有