ActiveMQ系列之四:用ActiveMQ构建应用

时间:2022-08-31 11:42:32

Broker:相当于一个ActiveMQ服务器实例

命令行启动参数示例如下:

1:activemq start :使用默认的activemq.xml来启动

2:activemq start xbean:file:../conf/activemq-2.xml :使用指定的配置文件来启动

3:如果不指定file,也就是xbean:activemq-2.xml,那么xml必须在classpath下面

用ActiveMQ来构建Java应用,这里主要将用ActiveMQ Broker作为独立的消息服务器来构建JAVA应用。ActiveMQ也支持在vm中通信基于嵌入式的broker,能够无缝的集成其它java应用 。

嵌入式Broker启动

1:Broker Service启动broker ,示例如下:

BrokerService broker = new BrokerService();  

   broker.setUseJmx (true);  

   broker.addConnector ("tcp://localhost:61616");  

   broker.start (); 

2:BrokerFactory启动broker ,示例如下:

   String Uri = "properties:broker.properties";  

   BrokerService broker1 = BrokerFactory.createBroker(new URI(Uri));  

   broker1.addConnector("tcp ://localhost:61616");  

   broker1.start(); 

3:broker.properties的内容示例如下:

   useJmx=true 

   persistent=false 

   brokerName=Cheese

利用Spring集成Broker,Spring的配置文件如下:

<beans> 

    <bean id="admins" class="org.apache.activemq.security.AuthenticationUser"> 

           <constructor-arg index="0" value="admin" /> 

           <constructor-arg index="1" value="password" /> 

           <constructor-arg index="2" value="admins,publisher,consumers" /> 

    </bean> 

    <bean id="publishers"        class="org.apache.activemq.security.AuthenticationUser"> 

           <constructor-arg index="0" value="publisher" /> 

           <constructor-arg index="1" value="password" /> 

           <constructor-arg index="2" value="publisher,consumers" /> 

    </bean> 

    <bean id="consumers" class="org.apache.activemq.security.AuthenticationUser"> 

           <constructor-arg index="0" value="consumer" /> 

           <constructor-arg index="1" value="password" /> 

           <constructor-arg index="2" value="consumers" /> 

    </bean> 

    <bean id="guests" class="org.apache.activemq.security.AuthenticationUser"> 

           <constructor-arg index="0" value="guest" /> 

           <constructor-arg index="1" value="password" /> 

           <constructor-arg index="2" value="guests" /> 

    </bean> 
<bean id="simpleAuthPlugin"         class="org.apache.activemq.security.SimpleAuthenticationPlugin"> 

            <property name="users"> 

      <util:list> 

<ref bean="admins" /> 

<ref bean="publishers" /> 

<ref bean="consumers" /> 

<ref bean="guests" /> 

      </util:list> 

            </property> 

     </bean> 

<bean id="broker" class="org.apache.activemq.broker.BrokerService" init-method="start" destroy-method="stop"> 

            <property name="brokerName" value="myBroker" /> 

            <property name="persistent" value="false" /> 

            <property name="transportConnectorURIs"> 

      <list> 

<value>tcp://localhost:61616</value> 

      </list> 

            </property> 

            <property name="plugins"> 

      <list> 

<ref bean="simpleAuthPlugin"/> 

      </list> 

            </property> 

     </bean> 

</beans> 

或者配置BrokerFactoryBean,示例如下:

<beans> 

   <bea id="broker"      class="org.apache.activemq.xbean.BrokerFactoryBean"> 

         <property name="config"  value="resources/activemq-simple.xml"/> 

         <property name="start" value="true" /> 

   </bean> 

</beans> 

1:可以通过在应用程序中以编码的方式启动broker,例如: broker.start();

如果需要启动多个broker,那么需要为broker设置一个名字。例如:

BrokerService broker = new BrokerService();  

   broker.setName("fred");  

   broker.addConnector ("tcp://localhost:61616");  

   broker.start ();

2:还可以通过spring来启动,前面已经演示过了

Spring提供了对JMS的支持,需要添加Spring支持jms的包,如下:

<dependency> 

   <groupId>org.springframework</groupId> 

   <artifactId>spring-jms</artifactId> 

   <version>4.0.3.RELEASE</version> 

</dependency> 

添加ActiveMQ的pool包

<dependency> 

   <groupId>org.apache.activemq</groupId> 

   <artifactId>activemq-pool</artifactId> 

   <version>5.9.0</version> 

</dependency> 

然后需要在Spring的配置文件中,配置jmsTemplate,示例如下:

<bean id="jmsFactory" class="org.apache.activemq.pool.PooledConnectionFactory" 

        destroy-method="stop">   

        <property name="connectionFactory">   

            <bea class="org.apache.activemq.ActiveMQConnectionFactory">   

                <property name="brokerURL">   

  <value>tcp://192.168.1.106:61679</value>   

                </property>   

            </bean>   

        </property>   

        <property name="maxConnections" value="100"></property>   

    </bean>   

    <bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">   

        <property name="connectionFactory" ref="jmsFactory" />   

        <property name="defaultDestination" ref="destination" />   

        <property name="messageConverter">   

            <bea class="org.springframework.jms.support.converter.SimpleMessageConverter" />   

        </property>   

    </bean>
<bean id="destination" class="org.apache.activemq.command.ActiveMQQueue"> <constructor-arg index="0" value="spring-queue" /> </bean>

ActiveMQ结合Spring开发

 queue消息发送 

@Autowired 

private JmsTemplate jt = null; 

public static void main(String[] args) { 

ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); 

    SpringJMSClient ct = (SpringJMSClient)ctx.getBea ("springJMSClient"); 

    ct.jt.send(new MessageCreator() { 

           public Message createMessage(Sessio s) throws JMSExceptio { 

   TextMessage msg = s.createTextMessage("Spring msg==="); 

   retur msg; 

           } 

    }); 

} 

 queue消息接收 

@Autowired 

private JmsTemplate jt = null; 

public static void main(String[] args) throws Exceptio { 

ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); 

SpringJMSReceiverClient ct = (SpringJMSReceiverClient)ctx.getBean("springJMSReceiverClient"); 

    String msg =  (String)ct.jt.receiveAndConvert(); 

    System.out.println("msg==="+msg); 

} 

如果topic的话,首先需要修改spring的配置:先添加topic的配置,当然,需要修改jmsTemplate配置里面的defaultDestination,如果不想修改这个配置,那么直接把Destination注入程序,在程序里面选择发送的Destination也可以:

<bean id="destinationTopic" class="org.apache.activemq.command.ActiveMQTopic">   

    <constructor-arg index="0" value="spring-topic" />   

</bean> 

其他的客户端发送和接收跟队列基本是一样的。 如果想要在Spring中配置消费者的话,就不需要再启动接收的客户端了,配置如下:

<bean id="jmsContainer" 

   class="org.springframework.jms.listener.DefaultMessageListenerContainer"> 

   <property name="connectionFactory" ref="jmsFactory" /> 

   <property name="destination" ref="destinationTopic" /> 

   <property name="messageListener" ref="messageListener" /> 

</bean> 

<bean id="messageListener" 

   class="cn.javass.activemq.MyMessageListener"> 

</bean> 

当然,需要写一个类来实现消息监听,如:

public class MyMessageListener implements MessageListener{ 

   public void onMessage(Message arg0) { 

         TextMessage msg =  (TextMessage)arg0; 

         try { 

                 System.out.println("receive txt msg==="+msg.getText ()); 

         } catch (JMSExceptio e) { 

                 e.printStackTrace(); 

         } 

   } 

} 

这样测试的时候,只需要启动消息生产者就好了。

ActiveMQ结合Spring开发最佳实践和建议

1:Camel框架支持大量的企业集成模式,可以大大简化集成组件间的大量服务和复杂的消息流。而Spring框架更注重简单性,仅仅支持基本的最佳实践。

2:Spring消息发送的核心架构是JmsTemplate,隔离了像打开、关闭Session和Producer的繁琐操作,因此应用开发人员仅仅需要关注实际的业务逻辑。但是JmsTemplate损害了ActiveMQ的PooledConnectionFactory对session和消息producer的缓存机制而带来的性能提升。

3:新的Spring里面,可以设置org.springframework.jms.connection.CachingConnectionFactory的sessionCacheSize ,或者干脆使用ActiveMQ的PooledConnectionFactory 。

4:不建议使用JmsTemplate的receive()调用,因为在JmsTemplate上的所有调用都是同步的,这意味着调用线程需要被阻塞,直到方法返回,这对性能影响很大 。

5:请使用DefaultMessageListenerContainer,它允许异步接收消息并缓存session和消息consumer,而且还可以根据消息数量动态的增加或缩减监听器的数量。

文档免费下载:ActiveMQ系列:ActiveMQ快速上手
http://download.csdn.net/detail/undoner/8302247

ActiveMQ系列之四:用ActiveMQ构建应用的更多相关文章

  1. ActiveMQ系列之五:ActiveMQ的Transport

    连接到ActiveMQ Connector:ActiveMQ提供的,用来实现连接通讯的功能.包括:client-to-broker.broker-to-broker. ActiveMQ允许客户端使用多 ...

  2. ActiveMQ系列之一:ActiveMQ简介

    ActiveMQ是什么  ActiveMQ是Apache推出的,一款开源的,完全支持JMS1.1和J2EE 1.4规范的JMS   Provider实现的消息中间件 (Message Oriented ...

  3. Gradle学习系列之四——增量式构建

    在本系列的上篇文章中,我们讲到了如何读懂Gradle的语法,在本篇文章中,我们将讲到增量式地构建项目. 请通过以下方式下载本系列文章的Github示例代码: git clone https://git ...

  4. ActiveMQ系列之三:理解和掌握JMS

    JMS是什么 JMS Java Message Service,Java消息服务,是Java EE中的一个技术. JMS规范 JMS定义了Java 中访问消息中间件的接口,并没有给予实现,实现JMS  ...

  5. ActiveMQ系列之二:ActiveMQ安装和基本使用

    下载并安装ActiveMQ服务器端 1:从http://activemq.apache.org/download.html下载最新的ActiveMQ 2:直接解压,然后拷贝到你要安装的位置就好了 启动 ...

  6. ActiveMQ入门之四--ActiveMQ持久化方式

    消息持久性对于可靠消息传递来说应该是一种比较好的方法,有了消息持久化,即使发送者和接受者不是同时在线或者消息中心在发送者发送消息后宕机了,在消息中心重新启动后仍然可以将消息发送出去,如果把这种持久化和 ...

  7. 给Source Insight做个外挂系列之三--构建外挂软件的定制代码框架

    上一篇文章介绍了“TabSiPlus”是如何进行代码注入的,本篇将介绍如何构建一个外挂软件最重要的部分,也就是为其扩展功能的定制代码.本文前面提到过,由于windows进程管理的限制,扩展代码必须以动 ...

  8. Sql Server来龙去脉系列之四 数据库和文件

        在讨论数据库之前我们先要明白一个问题:什么是数据库?     数据库是若干对象的集合,这些对象用来控制和维护数据.一个经典的数据库实例仅仅包含少量的数据库,但用户一般也不会在一个实例上创建太多 ...

  9. Red Gate系列之四 SQL Data Compare 10&period;2&period;0&period;885 Edition 数据比较同步工具 完全破解&plus;使用教程

    原文:Red Gate系列之四 SQL Data Compare 10.2.0.885 Edition 数据比较同步工具 完全破解+使用教程 Red Gate系列之四 SQL Data Compare ...

随机推荐

  1. phantomjs和angular-seo-server实现angular单页面seo

    1.下载phantomjs,并配置环境变量为   eg:E:\phantomjs-2.1.1-windows\bin 2.下载angular-seo-server 3.windows下:cmd eg: ...

  2. ps闪闪发光的字 教程&plus;自我练习

    本教程的文字效果非常经典.不仅是效果出色,创作思路及制作手法都堪称完美.作者并没有直接使用纹理素材,纹理部分都是用滤镜来完成.这需要很强的综合能力,非常值得学习和借鉴.最终效果 我的: 1.创建一个新 ...

  3. C&num; 字符串加密解密方法

    这个是加密的算法的命名空间,使用加密算法前要引用该程序集  System.Security.Cryptography using System;using System.Data;using Syst ...

  4. nodejs这个过程POST求

    下面是一个web登陆模拟过程.当我们问一个链接,你得到一个表格,然后填写相应的表格值,然后提交登陆. var http = require('http'); var querystring = req ...

  5. Spring&plus;Maven配置等问题

    1. 在POM中使用 统一/指定/特定 的Spring版本号 <properties> <spring.version>4.1.6.RELEASE</spring.ver ...

  6. java学习之动态代理模式

    package com.gh.dynaproxy; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Metho ...

  7. php在laravel中使用自定义的Common类

    众所周知,laravel是一款高度集成的开发框架,框架内置非常多的操作方法,从而保证了我们的开发效率.但是在日常中为了满足我们的个性化业务,也需要自己去编写工具类,在laravel中我们完成编写后还需 ...

  8. 【原创】分布式之redis的三大衍生数据结构

    引言 说起redis的数据结构,大家可能对五大基础数据类型比较熟悉:String,Hash,List,Set,Sorted Set.那么除此之外,还有三大衍生数据结构,大家平时是很少接触的,即:bit ...

  9. 移动端页面滑动时候警告:Unable to preventDefault inside passive event listener due to target being treated as passive&period;

    移动端项目中,在滚动的时候,会报出以下提示: [Intervention] Unable to preventDefault inside passive event listener due to ...

  10. 上传下载 demo

    import org.apache.commons.io.IOUtils; import org.apache.commons.lang.StringUtils; import org.springf ...