確かに、単に次のように:
ActiveMQSslConnectionFactory connectionFactory = new ActiveMQSslConnectionFactory("failover:(ssl://192.168.1.112:61617,ssl://192.168.1.112:61619)?randomize=false&maxReconnectAttempts=Value")
すべてのフェールオーバー トランスポート オプションは URL で設定できます
http://activemq.apache.org/failover-transport-reference.html
後で URL を変更したい場合は、 を呼び出すことができますconnectionFactory.setBrokerURL("newURL")
。その後、作成されたすべての新しい接続は、URL の新しいパラメーターで構成されます。
ConnectionFactory の作成後にこれを変更する場合は、URL パラメータに基づいて新しい Connection ごとに FailoverTransport の新しいインスタンスが作成され、各 Connection が FailoverTransport のインスタンスを保持することに注意してください。したがって、状態を変更するには、次のようにアクセスします。
((FailoverTransport) ((TransportFilter) ((TransportFilter) ((ActiveMQConnection) connection).getTransport()).getNext()).getNext())
.setMaxReconnectAttempts(10);
またはより読みやすい:
org.apache.activemq.transport.TransportFilter responseCorrelator = (TransportFilter) ((ActiveMQConnection) connection).getTransport();
TransportFilter mutexTransport = (TransportFilter) responseCorrelator.getNext();
FailoverTransport failoverTransport = (FailoverTransport) mutexTransport.getNext();
failoverTransport.setMaxReconnectAttempts(10);
これらすべてのキャストの理由を理解するには、このメソッドのソース コードを見てください。
org.apache.activemq.transport.failover.FailoverTransportFactory.doConnect(URI)
こちらhttps://github.com/apache/activemq/blob/master/activemq-client/src/main/java/org/apache/activemq/transport/failover/FailoverTransportFactory.java