2

Spring Integrationでcontrol-busを使用してmail:inbound-channel-adapterを開始および停止しています。チャンネルの状態を確認する方法はありますか?それが実行されているかどうか?

どうもありがとう

4

1 に答える 1

3

メッセージング ゲートウェイを使用して、メッセージを制御バスに送信します...

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

于 2012-12-13T02:21:45.017 に答える