2
我使用控制總線來啓動和停止郵件:Spring集成中的入站通道適配器。 有什麼方法可以檢查頻道狀態?如果它正在運行?如何檢查Spring Integration中的郵件:入站通道適配器是否正在運行?
感謝的很多
我使用控制總線來啓動和停止郵件:Spring集成中的入站通道適配器。 有什麼方法可以檢查頻道狀態?如果它正在運行?如何檢查Spring Integration中的郵件:入站通道適配器是否正在運行?
感謝的很多
使用短信網關發送一個消息傳遞到控制總線...
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