初步使用ActiveMQ

参考:http://t.csdnimg.cn/DxjMm

ActiveMQ的安装

官方的下载地址:http://activemq.apache.org/components/classic/download

(1)运行:解压后,进入bin目录,执行对应版本的 activemq.bat

管理页面:ActiveMQ的默认端口是8161,通过http://localhost:8161/admin/ 可以进 入管理页面

消息生产者程序

依赖

 <dependency><groupId>org.apache.activemq</groupId><artifactId>activemq-core</artifactId><version>5.7.0</version></dependency>

生产者

package com.example.activiti.mq;import org.apache.activemq.ActiveMQConnectionFactory;import javax.jms.*;public class ProducerDemo {public static void main(String[] args) {//创建mq连接工厂//管理路径8161 生产路径61616ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://localhost:61616");Connection conn = null;try {//打开mq连接conn = connectionFactory.createConnection();conn.start();//创建mq会话Session session = conn.createSession(false, Session.AUTO_ACKNOWLEDGE);//创建消息队列Destination destination = session.createQueue("text-queue-1");//基于队列创建消息发布者MessageProducer msgProducer = session.createProducer(destination);msgProducer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);//向消息队列发送信息for (int i = 1; i <= 5; i++) {TextMessage msg = session.createTextMessage();msg.setText("消息,"+ i);msgProducer.send(msg);System.out.println("生产者: "+ msg.getText());}} catch (JMSException e) {throw new RuntimeException(e);}finally {if (conn != null){try {conn.close();}catch (JMSException e){e.printStackTrace();}}}}
}

消费者

package com.example.activiti.mq;import org.apache.activemq.ActiveMQConnectionFactory;import javax.jms.*;public class ConsumerDemo {public static void main(String[] args){ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://localhost:61616");Connection conn = null;try {conn = connectionFactory.createConnection();conn.start();Session session = conn.createSession(false,Session.AUTO_ACKNOWLEDGE);Destination destination = session.createQueue("text-queue-1");MessageConsumer msgConsumer = session.createConsumer(destination);while (true){TextMessage msg = (TextMessage) msgConsumer.receive();if (msg == null)break;System.out.println("消费者"+msg.getText());}} catch (JMSException e) {throw new RuntimeException(e);}finally {if (conn != null){try {conn.close();}catch (JMSException e){e.printStackTrace();}}}}
}
使用 Spring Boot 简化JMS开发 发送字符串消息

依赖

        <!--ActiveMQ--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-activemq</artifactId></dependency>

 yml

spring:activemq:broker-url: tcp://127.0.0.1:61616user: rootpassword: 1234packages:trusted:- com.example.activemq.pojo

启动类


import jakarta.jms.Queue;
import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;@SpringBootApplication
public class BootJmsDemoApplication {//在Spring配置类中创建Destination(消息目的地)——Queue(队列)@Bean(name = "msgQueue")public Queue msgQueue(){return new ActiveMQQueue("boot-queue-msg");}
}

生产者

package com.example.activemq.controller;import jakarta.jms.Queue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.jms.core.JmsMessagingTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
public class MsgProducerController {@Autowired@Qualifier("msgQueue")private Queue msgQueue;//spring提供了JmsMessagingTemplate来简化JMS的调用,直接可以向指定队列发送消 息。@Autowiredprivate JmsMessagingTemplate jmsTemplate;@GetMapping("/send-msg")public void sendMsg(){jmsTemplate.convertAndSend(msgQueue,"测试发送消息");}
}

消费者

package com.example.activemq.controller;import jakarta.jms.Queue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.jms.core.JmsMessagingTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
public class MsgConsumerController {//spring 提供了“@JmsListener”注解,用于指定接收特定队列消息的消费者方法@JmsListener(destination = "boot-queue-msg")public void receive(String msg){System.out.println("消费者,接收到:"+msg);}
}
发送对象消息

使用JmsMessagingTemplate还可从生产者向消费者以发送对象,对象实际上会被序列化 到消息队列中。

启动类

    @Bean(name = "userQueue")public Queue userQueue(){return new ActiveMQQueue("boot-queue-user");}

生产者

package com.example.activemq.controller;import com.example.activemq.pojo.User;
import jakarta.jms.Queue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.jms.core.JmsMessagingTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
public class UserProducerController {@Autowired@Qualifier("userQueue")private Queue userQueue;@Autowiredprivate JmsMessagingTemplate jmsTemplate;@GetMapping("/send-user")public void sendUser(){User user = new User(1,"zhangsan","张三");jmsTemplate.convertAndSend(userQueue,user);}
}

消费者

package com.example.activemq.controller;import com.example.activemq.pojo.User;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.web.bind.annotation.RestController;@RestController
public class UserConsumerController {@JmsListener(destination = "boot-queue-user")public void receive(User user){System.out.println("消费者,接收到:"+user);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/136234.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

官方Redis视图化工具Redisinsight

一、下载最新版本的 docker pull redislabs/redisinsight mkdir /data/redisinsight docker run -d -u root -p 8001:8001 -v /etc/localtime:/etc/localtime -v /data/redisinsight:/db --restartunless-stopped redislabs/redisinsight:latest 二、浏览器打开 http://192…

自动化测试(Java+eclipse)教程

webdriver环境配置 1.下载chromedriver到本地&#xff08;一定要选择和自己浏览器相对应的版本chromedriver下载地址&#xff09; 2.加入到环境变量path中 webdriver工作原理 创建web自动化测试脚本 1.Maven项目创建 File->New->project->(搜索maven)选择maven pr…

爱家房产网站源码 爱家房产网商业版 微信互动营销整合+手机触屏版+经纪人分销

房产网站源码手机访问自动转手机版修改修复如下&#xff1a; 1&#xff0c;修复手机版首页标题头部名称 2&#xff0c;修复手机版首页频道导航按钮 3&#xff0c;新增手机版广告位置显示方式 4&#xff0c;修复手机版首页内容显示样式 5&#xff0c;手机版头部背景颜色ic…

什么是观察者模式?用 Python 如何实现 Observer(观察者或发布订阅)对象行为型模式?

什么是观察者模式&#xff1f; 观察者模式&#xff08;Observer pattern&#xff09;是一种行为型设计模式&#xff0c;它允许对象之间建立一种一对多的依赖关系&#xff0c;当一个对象的状态发生变化时&#xff0c;其相关依赖对象都会得到通知并自动更新。 在观察者模式中&am…

Vue3的组合式API介绍,和Vue2生命周期函数的变化

目录 1&#xff0c;setup2&#xff0c;生命周期函数1&#xff0c;为什么删除了 beforeCreate 和 created&#xff1f;2&#xff0c;新增钩子函数 3&#xff0c;compositionAPI 相比于 optionAPI 有哪些优势&#xff1f; Vue3 中新增了 composition API&#xff08;组合式API&am…

三天打鱼两天晒网

文章目录 前言一、题目描述 二、题目分析 三、解题 程序运行代码 前言 本系列为选择结构编程题&#xff0c;点滴成长&#xff0c;一起逆袭。 一、题目描述 二、题目分析 三、解题 程序运行代码 #include<stdio.h> int main(){int n;scanf("%d",&n);i…

Go 接口:Go中最强大的魔法,接口应用模式或惯例介绍

Go 接口&#xff1a;Go中最强大的魔法,接口应用模式或惯例介绍 文章目录 Go 接口&#xff1a;Go中最强大的魔法,接口应用模式或惯例介绍一、前置原则二、一切皆组合2.1 一切皆组合2.2 垂直组合2.2.1 第一种&#xff1a;通过嵌入接口构建接口2.2.2 第二种&#xff1a;通过嵌入接…

Android 笔记: 字符串截取操作方法

1、Android 截取字符串&#xff0c;返回字符串数组&#xff1a; String str “abcd.efg.123456.hijk.345”; String[] strsstr.split(“.”); 2、将字符串从索引号为3开始截取&#xff0c;一直到字符串末尾&#xff08;索引值从0开始&#xff09;: String str “abcdefghijk…

【应用前沿】360QPaaS 精彩亮相首届中国航空制造设备博览会 | 数智航空

近日&#xff0c;首届“中国航空制造设备博览会”&#xff08;CAEE2023&#xff09;在宁波国际会展中心顺利召开&#xff0c;本届大会以“数智产融 开放发展”为主题&#xff0c;以“新技术、新产品、新服务、新企业”为定位&#xff0c;以特色化、专业化、品牌化、高端化为方向…

AVL树详解

目录 AVL树的概念 旋转的介绍 单旋转 双旋转 旋转演示 具体实现 通过高度判断的实现 通过平衡因子判断的实现 AVL树的概念 AVL树是一种自平衡的平衡二叉查找树&#xff0c;它是一种高效的数据结构&#xff0c;可以在插入和删除节点时保持树的平衡&#xff0c;从而保证…

ubuntu 20.04.1 LTS 开机自启动脚本服务开启

sudo vi /etc/systemd/system/rc-local.service 写入以下内容&#xff1a; # SPDX-License-Identifier: LGPL-2.1 # # This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser Gen…

在HTML单页面中,使用Bootstrap框架的多选框如何提交数据

1.引入Bootstrap CSS和JavaScript文件&#xff1a;确保在HTML页面的标签内引入Bootstrap的CSS和JavaScript文件。可以使用CDN链接或者下载本地文件。 <link rel"stylesheet" href"https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css&q…

04【保姆级】-GO语言指针

之前我学过C、Java、Python语言时总结的经验&#xff1a; 先建立整体框架&#xff0c;然后再去抠细节。先Know how&#xff0c;然后know why。先做出来&#xff0c;然后再去一点点研究&#xff0c;才会事半功倍。适当的囫囵吞枣。因为死抠某个知识点很浪费时间的。对于GO语言&a…

16.字符连接

#include<stdio.h> #include <cstring> int main(){char s1[44];char s2[33];scanf("%s",s1);scanf("%s",s2);strcat(s1,s2) ;printf("连接两个字符为&#xff1a;%s ",s1); return 0;}

verilog——移位寄存器

在Verilog中&#xff0c;你可以使用移位寄存器来实现数据的移位操作。移位寄存器是一种常用的数字电路&#xff0c;用于将数据向左或向右移动一个或多个位置。这在数字信号处理、通信系统和其他应用中非常有用。以下是一个使用Verilog实现的简单移位寄存器的示例&#xff1a; m…

Docker实现挂载的N种方式

目录 docker挂载实现挂载的方式绑定挂载数据卷&#xff08;Volume&#xff09;挂载DockerFile 定义数据卷临时文件系统&#xff08;tmpfs&#xff09;挂载挂载 docker挂载 默认情况下&#xff0c;在Docker容器内创建的所有文件都只能在容器内部使用。容器删除后&#xff0c;数…

HashMap源码分析(一)

存储结构 说明&#xff1a;本次讲解的HashMap是jdk1.8中的实现&#xff0c;其他版本可能有差异 内部是由Node节点数组组成&#xff0c;Node节点之间又由链表或红黑树组成。 图是网上找的&#xff0c;实在不想画 属性介绍 //存储数据的数组&#xff0c;初次使用时初始化&…

基于CSP的运动想象EEG分类任务实战

基于运动想象的公开数据集&#xff1a;Data set IVa (BCI Competition III)1 数据描述参考前文&#xff1a;https://blog.csdn.net/qq_43811536/article/details/134224005?spm1001.2014.3001.5501 EEG 信号时频空域分析参考前文&#xff1a;https://blog.csdn.net/qq_4381153…

xdcms漏洞合集-漏洞复现

目录 xdcms v3.0.1漏洞 环境搭建 代码审计 目录总览 配置文件总览 登陆处sql注入 漏洞分析 漏洞复现 注册处sql注入漏洞 漏洞分析 漏洞复现 getshell 任意文件删除 xdcms订餐网站管理系统v1.0漏洞 简介 环境搭建 全局变量的覆盖 漏洞分析 漏洞复现 后台任意…

6个机器学习可解释性框架

1、SHAP SHapley Additive explanation (SHAP)是一种解释任何机器学习模型输出的博弈论方法。它利用博弈论中的经典Shapley值及其相关扩展将最优信贷分配与局部解释联系起来. 举例&#xff1a;基于随机森林模型的心脏病患者预测分类 数据集中每个特征对模型预测的贡献由Shap…