我是JBoss和EJB的新手。我正在使用JBoss AS7.1.1进行消息驱动bean监听远程机器上的主题。我们的设置是MDB必须监听的主要和辅助MQ服务器。
我可以在这个HornetQ自定义属性中指定远程地址列表吗?
@ActivationConfigProperty(propertyName="connectorClassName", propertyValue="org.hornetq.core.remoting.impl.netty.NettyConnectorFactory"),
@ActivationConfigProperty(propertyName="connectionParameters", propertyValue="host=remotehost-a;port=5445"),
@ActivationConfigProperty(propertyName = "user", propertyValue = "jmsuser"),
@ActivationConfigProperty(propertyName = "password", propertyValue = "password")
是否可以在运行时配置MDB(可能是通过部署描述符?)以获得一组新的远程MQ服务器地址(remotehost-b,remotehost-c等)?
请提供一些指示。感谢。