以下の構成をテストして、service-activator を使用してサービス クラス メソッドに InputStream を渡す方法を探していますが、service-activator が呼び出されなかったようです。間違っている点はありますか?
<bean id="sftpSessionFactory" ... />
<int:channel id="inboundGetStream">
<int:queue />
</int:channel>
<int-sftp:outbound-gateway session-factory="sftpSessionFactory"
request-channel="inboundGetStream"
command="get"
command-options="-stream"
expression="payload"
remote-directory="ftpTarget"
reply-channel="streamHandler" />
<int:service-activator input-channel="inboundGetStream" ref="streamHandler" method="handleMessage"/>
サービス クラスで、InputStream パラメータを持つメソッドが作成されます。
@Service("streamHandler")
public class StreamHandler {
public void handleMessage(InputStream file, @Headers['file_remoteSession']DefaultSftpSessionFactory session) throws FileNotFoundException, IOException{
log.debug("############# handleMessage(file) ###########");
log.debug(IOUtils.toString(new FileInputStream(file)));
session.close();
}
}