我有一个WildFly集群,它应该将所有主题消息共享到不同的节点,并在一个节点离线时保留它们 对于这种情况,我需要持久的订阅。
@MessageDriven(
activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic"),
@ActivationConfigProperty(propertyName = "destination", propertyValue = "jms/Topic"),
@ActivationConfigProperty(propertyName = "subscriptionDurability", propertyValue = "Durable"),
@ActivationConfigProperty(propertyName = "subscriptionName", propertyValue = "anam123e"),
@ActivationConfigProperty(propertyName = "clientID", propertyValue = "abcd"),
}
)
我注意到如果我使用相同的clientID,系统正在进行负载平衡。如果我将 clientID 或 subscriptionName 更改为唯一值,则可以使用。
那么何时使用唯一的 clientID 以及何时 subscriptionName ?
我的答案是,每个节点的唯一clientID和节点上每个线程的subscriptionName。
此外,我想基于类似于:
的wildfly节点名称生成clientID@ActivationConfigProperty(propertyName = "clientID", propertyValue = "abcd-" + WildFly.getInstance().getNodeName()),
有没有办法实现它?
答案 0 :(得分:0)
有一个真正简单的解决方案:Property Replacement
您需要在 standalone.xml 中启用它:
<subsystem xmlns="urn:jboss:domain:ee:2.0">
<annotation-property-replacement>true</annotation-property-replacement>
...
</subsystem>
新注释可能如下所示:
@MessageDriven(
activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Topic"),
@ActivationConfigProperty(propertyName = "destination", propertyValue = "jms/Topic"),
@ActivationConfigProperty(propertyName = "subscriptionDurability", propertyValue = "Durable"),
@ActivationConfigProperty(propertyName = "subscriptionName", propertyValue = "aname"),
@ActivationConfigProperty(propertyName = "clientID", propertyValue = "abcd-${jboss.node.name}"),
}
)