首页
/ Apache ActiveMQ Artemis 使用教程

Apache ActiveMQ Artemis 使用教程

2024-09-02 04:13:32作者:袁立春Spencer

1. 项目的目录结构及介绍

Apache ActiveMQ Artemis 的目录结构如下:

activemq-artemis/
├── artemis-boot
├── artemis-cli
├── artemis-commons
├── artemis-core-client
├── artemis-dto
├── artemis-features
├── artemis-jms-client
├── artemis-jms-server
├── artemis-journal
├── artemis-protocols
├── artemis-rest
├── artemis-selector
├── artemis-server
├── artemis-service-extensions
├── artemis-spi
├── artemis-spring-integration
├── artemis-tools
├── artemis-web
├── artemis-website
├── bin
├── docs
├── examples
├── legal
├── licenses
├── pom.xml
├── README.md
└── tests

主要目录介绍:

  • artemis-boot: 包含启动 ActiveMQ Artemis 所需的脚本和配置。
  • artemis-cli: 包含命令行工具,用于管理和配置 ActiveMQ Artemis。
  • artemis-server: 核心服务器模块,包含消息服务器的实现。
  • bin: 包含启动和管理 ActiveMQ Artemis 的脚本。
  • docs: 包含项目的文档。
  • examples: 包含各种使用示例。
  • pom.xml: Maven 项目配置文件。

2. 项目的启动文件介绍

ActiveMQ Artemis 的启动文件主要位于 bin 目录下,包括:

  • artemis: 主启动脚本,用于启动和管理 ActiveMQ Artemis 实例。
  • artemis-service: 用于将 ActiveMQ Artemis 作为服务运行的脚本。

启动步骤:

  1. 进入 bin 目录:
    cd activemq-artemis/bin
    
  2. 启动 ActiveMQ Artemis:
    ./artemis run
    

3. 项目的配置文件介绍

ActiveMQ Artemis 的配置文件主要位于 etc 目录下,包括:

  • broker.xml: 主配置文件,包含消息服务器的各种配置,如连接器、地址、队列等。
  • bootstrap.xml: 引导配置文件,用于加载其他配置文件。
  • logging.properties: 日志配置文件,用于配置日志输出。

主要配置项:

  • broker.xml:

    <broker xmlns="http://activemq.org/schema">
      <connectors>
        <connector name="netty-connector">tcp://0.0.0.0:61616</connector>
      </connectors>
      <addresses>
        <address name="exampleQueue" type="queue"/>
      </addresses>
    </broker>
    
  • logging.properties:

    handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
    java.util.logging.FileHandler.pattern=activemq.log
    java.util.logging.FileHandler.limit=50000
    java.util.logging.FileHandler.count=1
    java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
    java.util.logging.ConsoleHandler.level=INFO
    java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
    

通过以上配置文件,可以对 ActiveMQ Artemis 进行详细的配置和管理。

登录后查看全文
热门项目推荐

项目优选

收起
kernelkernel
deepin linux kernel
C
22
6
docsdocs
OpenHarmony documentation | OpenHarmony开发者文档
Dockerfile
197
2.17 K
ohos_react_nativeohos_react_native
React Native鸿蒙化仓库
C++
208
285
pytorchpytorch
Ascend Extension for PyTorch
Python
59
94
RuoYi-Vue3RuoYi-Vue3
🎉 (RuoYi)官方仓库 基于SpringBoot,Spring Security,JWT,Vue3 & Vite、Element Plus 的前后端分离权限管理系统
Vue
974
574
nop-entropynop-entropy
Nop Platform 2.0是基于可逆计算理论实现的采用面向语言编程范式的新一代低代码开发平台,包含基于全新原理从零开始研发的GraphQL引擎、ORM引擎、工作流引擎、报表引擎、规则引擎、批处理引引擎等完整设计。nop-entropy是它的后端部分,采用java语言实现,可选择集成Spring框架或者Quarkus框架。中小企业可以免费商用
Java
9
1
ops-mathops-math
本项目是CANN提供的数学类基础计算算子库,实现网络在NPU上加速计算。
C++
549
81
openHiTLSopenHiTLS
旨在打造算法先进、性能卓越、高效敏捷、安全可靠的密码套件,通过轻量级、可剪裁的软件技术架构满足各行业不同场景的多样化要求,让密码技术应用更简单,同时探索后量子等先进算法创新实践,构建密码前沿技术底座!
C
1.02 K
399
communitycommunity
本项目是CANN开源社区的核心管理仓库,包含社区的治理章程、治理组织、通用操作指引及流程规范等基础信息
393
27
MateChatMateChat
前端智能化场景解决方案UI库,轻松构建你的AI应用,我们将持续完善更新,欢迎你的使用与建议。 官网地址:https://matechat.gitcode.com
1.2 K
133