我在尝试让我们的 MDB 在不同环境中使用动态加载的属性时遇到了一些困难。
@MessageDriven(activationConfig = {
@ActivationConfigProperty(propertyName = "providerURL", propertyValue = "localhost:7001"),
@ActivationConfigProperty(propertyName = "destinationType", propertyValue ="javax.jms.Queue") }, mappedName = "jms.MyQueue", name = "MyQueueReader")
public class QueueReaderBean implements MessageListener {
}
我们希望在部署到不同环境时更改 providerURL。你有什么建议吗?
我们不想使用 ejb.xml,而是在构造函数或后构造方法中以编程方式进行。
谢谢