2018年12月13日
摘要: activemq持久化 ActiveMQ提供了插件式的消息存储,主要有有如下几种: 1.AMQ消息存储-基于文件的存储方式,是以前的默认消息存储 2.KahaDB消息存储-提供了容量的提升和恢复能力,是现在的默认存储方式 3.JDBC消息存储-消息基于JDBC存储的 4.Memory消息存储-基于内 阅读全文
posted @ 2018-12-13 18:07 纸菠萝 阅读(259) 评论(0) 推荐(0) 编辑
摘要: activemq死信队列 DLQ-死信队列(Dead Letter Queue)用来保存处理失败或者过期的消息。 出现以下情况时,消息会被redelivered: A transacted session is used and rollback() is called. A transacted 阅读全文
posted @ 2018-12-13 17:29 纸菠萝 阅读(345) 评论(0) 推荐(0) 编辑
摘要: The VMware Authorization Service is not running。 原因 虚拟机服务没有开启 解决方法 阅读全文
posted @ 2018-12-13 16:33 纸菠萝 阅读(724) 评论(0) 推荐(0) 编辑
摘要: SpringBoot实现 引入jar包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> </dependency> 配置app 阅读全文
posted @ 2018-12-13 16:28 纸菠萝 阅读(360) 评论(0) 推荐(0) 编辑
摘要: Java实现 添加相应的jar包 <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-all</artifactId> <version>x.xx.x</version> </dependency> 创建生 阅读全文
posted @ 2018-12-13 16:16 纸菠萝 阅读(227) 评论(0) 推荐(0) 编辑
摘要: VM下载 VM是一款收费软件,要找有密钥的下载。 我的网盘 > 软件 > 常用电脑工具 > VM VM安装 参考链接中的安装步骤 http://blog.java1234.com/blog/articles/290.html 阅读全文
posted @ 2018-12-13 16:10 纸菠萝 阅读(614) 评论(0) 推荐(0) 编辑
摘要: Linux安装 环境JDK7以上 cd apache-activemq-x.xx.x/ cd bin/linux-x86-64/ ./activemq start 常用的命令 ./activemq console 控制台运行 ./activemq stop 关闭activemq ./activemq 阅读全文
posted @ 2018-12-13 16:01 纸菠萝 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 学习资源 官方文档 http://activemq.apache.org/features.html 下载ActiveMQ选择版本 http://activemq.apache.org/overview.html 需求背景 ActiveMQ 是Apache出品,最流行的,能力强劲的开源消息总线。Ac 阅读全文
posted @ 2018-12-13 15:49 纸菠萝 阅读(205) 评论(0) 推荐(0) 编辑