Spring Integrationでcontrol-busを使用してmail:inbound-channel-adapterを開始および停止しています。チャンネルの状態を確認する方法はありますか?それが実行されているかどうか?
どうもありがとう
Spring Integrationでcontrol-busを使用してmail:inbound-channel-adapterを開始および停止しています。チャンネルの状態を確認する方法はありますか?それが実行されているかどうか?
どうもありがとう
メッセージング ゲートウェイを使用して、メッセージを制御バスに送信します...
public interface Gateway {
boolean controlBusBooleanMethod(String command);
}
...
<int:gateway service-interface="foo.Gateway" default-request-channel="toControlBus" />
...
@Autowired
Gateway gateway;
...
boolean isRunning = gateway.controlBusBooleanMethod("@adapter.isRunning()");
....
HTH