配置ActiveMQ连接Broker使用failover协议


配置ActiveMQ连接Broker使用failover协议


问题描述

当brokerUrl值中包含空格时,运行程序会报无效的URI异常。


问题分析

ActiveMQ BrokerUrl 使用java.net.URI类,所以,当使用failover:或static: 时,如果在逗号 ',' 前后加空格时,会报无效URI的异常。





引用资料

http://activemq.apache.org/configuring-transports.html


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
ActiveMQ Broker 配置文件的位置取决于你是如何部署 ActiveMQ Broker 的。以下是一些常见的部署方式以及对应的配置文件位置: 1. 在本地开发环境中,ActiveMQ Broker 可能作为一个嵌入式组件来使用,此时你可以在你的代码中通过配置文件的路径来加载配置文件。例如: ```java BrokerService broker = new BrokerService(); broker.setBrokerName("myBroker"); broker.addConnector("tcp://localhost:61616"); broker.setPersistent(false); broker.setUseJmx(true); broker.setSchedulerSupport(true); broker.setAdvisorySupport(true); broker.setPlugins(new BrokerPlugin[] {new MyPlugin()}); broker.setDestinations(new ActiveMQDestination[] {new ActiveMQQueue("myQueue")}); broker.start(); ``` 在上述例子中,你可以通过调用 `broker.setPlugins()` 方法来加载插件,通过调用 `broker.setDestinations()` 方法来配置 ActiveMQ Broker 中的队列和主题。 2. 如果你是以独立进程方式运行 ActiveMQ Broker,那么配置文件通常位于 ActiveMQ 安装目录下的 `conf/activemq.xml` 文件中。你可以编辑该文件来配置 ActiveMQ Broker 的行为。例如: ```xml <broker xmlns="http://activemq.apache.org/schema/core" brokerName="myBroker" dataDirectory="${activemq.data}"> <plugins> <bean id="myPlugin" class="com.example.MyPlugin"/> </plugins> <destinations> <queue physicalName="myQueue"/> </destinations> <transportConnectors> <transportConnector name="openwire" uri="tcp://localhost:61616"/> </transportConnectors> </broker> ``` 在上述例子中,你可以通过在 `<plugins>` 元素中添加插件来加载插件,通过在 `<destinations>` 元素中配置 ActiveMQ Broker 中的队列和主题。 希望这些信息可以帮助你找到 ActiveMQ Broker 配置文件的位置。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值