私は次の注釈を使用しています:
@ActivationConfigProperty(
propertyName = "connectionParameters",
propertyValue = "host=127.0.0.1;port=5445,host=127.0.0.1;port=6600"),
public class TestMDB implements MessageDrivenBean, MessageListener
これらのIPアドレスとポートをそれぞれプルしてファイルに保存したいのjmsendpoints.properties
ですが、動的にロードします。このようなもの:
@ActivationConfigProperty(
propertyName = "connectionParameters",
propertyValue = jmsEndpointsProperties.getConnectionParameters()),
public class TestMDB implements MessageDrivenBean, MessageListener
それを行う方法はありますか?