首页
/ Apache ActiveMQ Artemis 使用教程

Apache ActiveMQ Artemis 使用教程

2024-09-02 08:35: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 进行详细的配置和管理。

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

最新内容推荐

项目优选

收起
ohos_react_nativeohos_react_native
React Native鸿蒙化仓库
C++
176
261
RuoYi-Vue3RuoYi-Vue3
🎉 (RuoYi)官方仓库 基于SpringBoot,Spring Security,JWT,Vue3 & Vite、Element Plus 的前后端分离权限管理系统
Vue
861
511
ShopXO开源商城ShopXO开源商城
🔥🔥🔥ShopXO企业级免费开源商城系统,可视化DIY拖拽装修、包含PC、H5、多端小程序(微信+支付宝+百度+头条&抖音+QQ+快手)、APP、多仓库、多商户、多门店、IM客服、进销存,遵循MIT开源协议发布、基于ThinkPHP8框架研发
JavaScript
93
15
openGauss-serveropenGauss-server
openGauss kernel ~ openGauss is an open source relational database management system
C++
129
182
openHiTLSopenHiTLS
旨在打造算法先进、性能卓越、高效敏捷、安全可靠的密码套件,通过轻量级、可剪裁的软件技术架构满足各行业不同场景的多样化要求,让密码技术应用更简单,同时探索后量子等先进算法创新实践,构建密码前沿技术底座!
C
259
300
kernelkernel
deepin linux kernel
C
22
5
cherry-studiocherry-studio
🍒 Cherry Studio 是一款支持多个 LLM 提供商的桌面客户端
TypeScript
596
57
CangjieCommunityCangjieCommunity
为仓颉编程语言开发者打造活跃、开放、高质量的社区环境
Markdown
1.07 K
0
HarmonyOS-ExamplesHarmonyOS-Examples
本仓将收集和展示仓颉鸿蒙应用示例代码,欢迎大家投稿,在仓颉鸿蒙社区展现你的妙趣设计!
Cangjie
398
371
Cangjie-ExamplesCangjie-Examples
本仓将收集和展示高质量的仓颉示例代码,欢迎大家投稿,让全世界看到您的妙趣设计,也让更多人通过您的编码理解和喜爱仓颉语言。
Cangjie
332
1.08 K