ActiveMQ

本文详细介绍如何在Spring框架中整合ActiveMQ,包括配置ConnectionFactory、Destination,实现消息生产和消费,以及通过代码示例演示如何在实际应用中发送和接收消息。

第一步:引用相关的jar包。

<dependency>

               <groupId>org.springframework</groupId>

               <artifactId>spring-jms</artifactId>

          </dependency>

          <dependency>

               <groupId>org.springframework</groupId>

               <artifactId>spring-context-support</artifactId>

          </dependency>

第二步:配置Activemq整合spring。配置ConnectionFactory

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

     xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"

     xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd

     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd

     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd

     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd

     http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">

 

 

     <!-- 真正可以产生Connection的ConnectionFactory,由对应的 JMS服务厂商提供 -->

     <bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">

          <property name="brokerURL" value="tcp://192.168.25.168:61616" />

     </bean>

     <!-- Spring用于管理真正的ConnectionFactory的ConnectionFactory -->

     <bean id="connectionFactory"

          class="org.springframework.jms.connection.SingleConnectionFactory">

          <!-- 目标ConnectionFactory对应真实的可以产生JMS Connection的ConnectionFactory -->

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

     </bean>

</beans>

 

第三步:配置生产者。

使用JMSTemplate对象。发送消息。

第四步:在spring容器中配置Destination。

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

     xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"

     xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"

     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd

     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd

     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd

     http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">

 

     <!-- 真正可以产生Connection的ConnectionFactory,由对应的 JMS服务厂商提供 -->

     <bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">

          <property name="brokerURL" value="tcp://192.168.25.168:61616" />

     </bean>

     <!-- Spring用于管理真正的ConnectionFactory的ConnectionFactory -->

     <bean id="connectionFactory"

          class="org.springframework.jms.connection.SingleConnectionFactory">

          <!-- 目标ConnectionFactory对应真实的可以产生JMS Connection的ConnectionFactory -->

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

     </bean>

     <!-- 配置生产者 -->

     <!-- Spring提供的JMS工具类,它可以进行消息发送、接收等 -->

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

          <!-- 这个connectionFactory对应的是我们定义的Spring提供的那个ConnectionFactory对象 -->

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

     </bean>

     <!--这个是队列目的地,点对点的 -->

     <bean id="queueDestination" class="org.apache.activemq.command.ActiveMQQueue">

          <constructor-arg>

               <value>spring-queue</value>

          </constructor-arg>

     </bean>

     <!--这个是主题目的地,一对多的 -->

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

          <constructor-arg value="topic" />

     </bean>

</beans>

 

第五步:代码测试

@Test

     public void testSpringActiveMq() throws Exception {

          //初始化spring容器

          ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");

          //从spring容器中获得JmsTemplate对象

          JmsTemplate jmsTemplate = applicationContext.getBean(JmsTemplate.class);

          //从spring容器中取Destination对象

          Destination destination = (Destination) applicationContext.getBean("queueDestination");

          //使用JmsTemplate对象发送消息。

          jmsTemplate.send(destination, new MessageCreator() {

              

               @Override

               public Message createMessage(Session session) throws JMSException {

                    //创建一个消息对象并返回

                    TextMessage textMessage = session.createTextMessage("spring activemq queue message");

                    return textMessage;

               }

          });

     }

 

    1. 代码测试
      1. 发送消息

第一步:初始化一个spring容器

第二步:从容器中获得JMSTemplate对象。

第三步:从容器中获得一个Destination对象

第四步:使用JMSTemplate对象发送消息,需要知道Destination

@Test

     public void testQueueProducer() throws Exception {

          // 第一步:初始化一个spring容器

          ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");

          // 第二步:从容器中获得JMSTemplate对象。

          JmsTemplate jmsTemplate = applicationContext.getBean(JmsTemplate.class);

          // 第三步:从容器中获得一个Destination对象

          Queue queue = (Queue) applicationContext.getBean("queueDestination");

          // 第四步:使用JMSTemplate对象发送消息,需要知道Destination

          jmsTemplate.send(queue, new MessageCreator() {

              

               @Override

               public Message createMessage(Session session) throws JMSException {

                    TextMessage textMessage = session.createTextMessage("spring activemq test");

                    return textMessage;

               }

          });

     }

 

      1. 接收消息

e3-search-Service中接收消息。

第一步:把Activemq相关的jar包添加到工程中

第二步:创建一个MessageListener的实现类。

public class MyMessageListener implements MessageListener {

 

     @Override

     public void onMessage(Message message) {

         

          try {

               TextMessage textMessage = (TextMessage) message;

               //取消息内容

               String text = textMessage.getText();

               System.out.println(text);

          } catch (JMSException e) {

               e.printStackTrace();

          }

     }

 

}

第三步:配置spring和Activemq整合。

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

     xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"

     xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"

     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd

     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd

     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd

     http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">

 

     <!-- 真正可以产生Connection的ConnectionFactory,由对应的 JMS服务厂商提供 -->

     <bean id="targetConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">

          <property name="brokerURL" value="tcp://192.168.25.168:61616" />

     </bean>

     <!-- Spring用于管理真正的ConnectionFactory的ConnectionFactory -->

     <bean id="connectionFactory"

          class="org.springframework.jms.connection.SingleConnectionFactory">

          <!-- 目标ConnectionFactory对应真实的可以产生JMS Connection的ConnectionFactory -->

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

     </bean>

     <!--这个是队列目的地,点对点的 -->

     <bean id="queueDestination" class="org.apache.activemq.command.ActiveMQQueue">

          <constructor-arg>

               <value>spring-queue</value>

          </constructor-arg>

     </bean>

     <!--这个是主题目的地,一对多的 -->

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

          <constructor-arg value="topic" />

     </bean>

     <!-- 接收消息 -->

     <!-- 配置监听器 -->

     <bean id="myMessageListener" class="cn.e3mall.search.listener.MyMessageListener" />

     <!-- 消息监听容器 -->

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

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

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

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

     </bean>

</beans>

第四步:测试代码。

@Test

     public void testQueueConsumer() throws Exception {

          //初始化spring容器

          ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext-activemq.xml");

          //等待

          System.in.read();

     }

 

  1. 添加商品同步索引库
    1. Producer

e3-manager-server工程中发送消息。

当商品添加完成后发送一个TextMessage,包含一个商品id。

@Override

     public e3Result addItem(TbItem item, String desc) {

          // 1、生成商品id

          final long itemId = IDUtils.genItemId();

          // 2、补全TbItem对象的属性

          item.setId(itemId);

          //商品状态,1-正常,2-下架,3-删除

          item.setStatus((byte) 1);

          Date date = new Date();

          item.setCreated(date);

          item.setUpdated(date);

          // 3、向商品表插入数据

          itemMapper.insert(item);

          // 4、创建一个TbItemDesc对象

          TbItemDesc itemDesc = new TbItemDesc();

          // 5、补全TbItemDesc的属性

          itemDesc.setItemId(itemId);

          itemDesc.setItemDesc(desc);

          itemDesc.setCreated(date);

          itemDesc.setUpdated(date);

          // 6、向商品描述表插入数据

          itemDescMapper.insert(itemDesc);

          //发送一个商品添加消息

          jmsTemplate.send(topicDestination, new MessageCreator() {

              

               @Override

               public Message createMessage(Session session) throws JMSException {

                    TextMessage textMessage = session.createTextMessage(itemId + "");

                    return textMessage;

               }

          });

          // 7e3Result.ok()

          return e3Result.ok();

     }

 

    1. Consumer
      1. 功能分析
  1. 接收消息。需要创建MessageListener接口的实现类。
  2. 取消息,取商品id。
  3. 根据商品id查询数据库。
  4. 创建一SolrInputDocument对象。
  5. 使用SolrServer对象写入索引库。
  6. 返回成功,返回e3Result。

 

      1. Dao层

根据商品id查询商品信息。

映射文件:

<select id="getItemById" parameterType="long" resultType="cn.e3mall.common.pojo.SearchItem">

          SELECT

               a.id,

               a.title,

               a.sell_point,

               a.price,

               a.image,

               b. NAME category_name,

               c.item_desc

          FROM

               tb_item a

          JOIN tb_item_cat b ON a.cid = b.id

          JOIN tb_item_desc c ON a.id = c.item_id

          WHERE a.status = 1

            AND a.id=#{itemId}

     </select>

 

      1. Service层

参数:商品ID

业务逻辑:

  1. 根据商品id查询商品信息。
  2. 创建一SolrInputDocument对象。
  3. 使用SolrServer对象写入索引库。
  4. 返回成功,返回e3Result。

返回值:e3Result

public e3Result addDocument(long itemId) throws Exception {

          // 1、根据商品id查询商品信息。

          SearchItem searchItem = searchItemMapper.getItemById(itemId);

          // 2、创建一SolrInputDocument对象。

          SolrInputDocument document = new SolrInputDocument();

          // 3、使用SolrServer对象写入索引库。

          document.addField("id", searchItem.getId());

          document.addField("item_title", searchItem.getTitle());

          document.addField("item_sell_point", searchItem.getSell_point());

          document.addField("item_price", searchItem.getPrice());

          document.addField("item_image", searchItem.getImage());

          document.addField("item_category_name", searchItem.getCategory_name());

          document.addField("item_desc", searchItem.getItem_desc());

          // 5、向索引库中添加文档。

          solrServer.add(document);

          solrServer.commit();

          // 4、返回成功,返回e3Result

          return e3Result.ok();

     }

 

      1. Listener

public class ItemChangeListener implements MessageListener {

    

     @Autowired

     private SearchItemServiceImpl searchItemServiceImpl;

 

     @Override

     public void onMessage(Message message) {

          try {

               TextMessage textMessage = null;

               Long itemId = null;

               //取商品id

               if (message instanceof TextMessage) {

                    textMessage = (TextMessage) message;

                    itemId = Long.parseLong(textMessage.getText());

               }

               //向索引库添加文档

               searchItemServiceImpl.addDocument(itemId);

              

          } catch (Exception e) {

               e.printStackTrace();

          }

     }

 

}

 

      1. Spring配置监听

 

内容概要:本文是一份针对2025年中国企业品牌传播环境撰写的《全网媒体发稿白皮书》,聚焦企业媒体发稿的策略制定、渠道选择与效果评估难题。通过分析当前企业面临的资源分散、内容同质、效果难量化等核心痛点,系统性地介绍了新闻媒体、央媒、地方官媒和自媒体四大渠道的特点与适用场景,并深度融合“传声港”AI驱动的新媒体平台能力,提出“策略+工具+落地”的一体化解决方案。白皮书详细阐述了传声港在资源整合、AI智能匹配、舆情监测、合规审核及全链路效果追踪方面的技术优势,构建了涵盖曝光、互动、转化与品牌影响力的多维评估体系,并通过快消、科技、零售等行业的实战案例验证其有效性。最后,提出了按企业发展阶段和营销节点定制的媒体组合策略,强调本土化传播与政府关系协同的重要性,助力企业实现品牌声量与实际转化的双重增长。; 适合人群:企业市场部负责人、品牌方管理者、公关传播从业者及从事数字营销的相关人员,尤其适用于初创期至成熟期不同发展阶段的企业决策者。; 使用场景及目标:①帮助企业科学制定媒体发稿策略,优化预算分配;②解决渠道对接繁琐、投放不精准、效果不可衡量等问题;③指导企业在重大营销节点(如春节、双11)开展高效传播;④提升品牌权威性、区域渗透力与危机应对能力; 阅读建议:建议结合自身企业所处阶段和发展目标,参考文中提供的“传声港服务组合”与“预算分配建议”进行策略匹配,同时重视AI工具在投放、监测与优化中的实际应用,定期复盘数据以实现持续迭代。
先展示下效果 https://pan.quark.cn/s/987bb7a43dd9 VeighNa - By Traders, For Traders, AI-Powered. Want to read this in english ? Go here VeighNa是一套基于Python的开源量化交易系统开发框架,在开源社区持续不断的贡献下一步步成长为多功能量化交易平台,自发布以来已经积累了众多来自金融机构或相关领域的用户,包括私募基金、证券公司、期货公司等。 在使用VeighNa进行二次开发(策略、模块等)的过程中有任何疑问,请查看VeighNa项目文档,如果无法解决请前往官方社区论坛的【提问求助】板块寻求帮助,也欢迎在【经验分享】板块分享你的使用心得! 想要获取更多关于VeighNa的资讯信息? 请扫描下方二维码添加小助手加入【VeighNa社区交流微信群】: AI-Powered VeighNa发布十周年之际正式推出4.0版本,重磅新增面向AI量化策略的vnpy.alpha模块,为专业量化交易员提供一站式多因子机器学习(ML)策略开发、投研和实盘交易解决方案: :bar_chart: dataset:因子特征工程 * 专为ML算法训练优化设计,支持高效批量特征计算与处理 * 内置丰富的因子特征表达式计算引擎,实现快速一键生成训练数据 * Alpha 158:源于微软Qlib项目的股票市场特征集合,涵盖K线形态、价格趋势、时序波动等多维度量化因子 :bulb: model:预测模型训练 * 提供标准化的ML模型开发模板,大幅简化模型构建与训练流程 * 统一API接口设计,支持无缝切换不同算法进行性能对比测试 * 集成多种主流机器学习算法: * Lass...
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值