Spring batch integration MessageSource<InputStream> to Joblaunch request

别等时光非礼了梦想. 提交于 2019-12-04 06:25:51

问题


I am planning to use S3Streaming message source to process the import file (xml)received in S3. I am not sure how to transform MessageSource to job launch request as job parameter doesn't support parameters other than primitive type, please throw some light on how to proceed on this - Thanks


回答1:


If you mean you want to pass the InputStream payload to an ItemReader, no, that can't be done with a JobLauncher.

Instead, the ItemReader itself needs to open the input stream (perhaps using a Spring Integration SftpRemoteFileTemplate).

Just pass the information (filename, server, credentials, etc) in the JobParameters and close the SI input stream payload without reading.



来源:https://stackoverflow.com/questions/52350127/spring-batch-integration-messagesourceinputstream-to-joblaunch-request

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!