我正在使用int-sftp:outbound-gateway
下载远程文件。文件下载正在运行。我需要在文件下载成功和失败后调用另一种方法。在该方法中,我需要状态(成功或失败)和请求下载的文件的名称。然后通过该方法,我将根据状态(例如将文件移动到不同位置、通知用户、发送电子邮件等)启动后下载流程。
我曾经AfterReturningAdviceInterceptor
调用我自己定义的方法在MyAfterReturningAdvice
其中实现AfterReturningAdvice
接口。有了这个我的方法来启动后下载流程。它确实执行了,我确实在 GenericMessage 的有效负载中获取了文件名。我的问题是,我们有没有更好的方法来实现这个流程。
我尝试使用ExpressionEvaluatingRequestHandlerAdvice
's onSuccessExpression 但我无法调用其他方法。我所能做的就是操纵 inputMessage(GenericMessage 实例)。
在未来的冲刺中,我会将下载文件的校验和与预期的校验和进行比较,如果校验和不匹配,则重新下载文件固定次数。一旦校验和匹配,我再次需要调用下载后流程。如果即使最后重试下载也失败了,那么我需要调用另一个流程(发送电子邮件、更新数据库、通知用户失败等)我问这个问题只是为了确保我当前的实现符合总体要求。
<int:gateway id="downloadGateway" service-interface="com.rizwan.test.sftp_outbound_gateway.DownloadRemoteFileGateway"
default-request-channel="toGet"/>
<bean id="myAfterAdvice" class="org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor">
<constructor-arg>
<bean class="com.rizwan.test.sftp_outbound_gateway.MyAfterReturningAdvice">
</bean>
</constructor-arg>
</bean>
<int-sftp:outbound-gateway id="gatewayGet"
local-directory="C:\sftp-outbound-gateway"
session-factory="sftpSessionFactory"
request-channel="toGet"
remote-directory="/si.sftp.sample"
command="get"
command-options="-P"
expression="payload"
auto-create-local-directory="true">
<int-sftp:request-handler-advice-chain>
<ref bean="myAfterAdvice" />
</int-sftp:request-handler-advice-chain>
</int-sftp:outbound-gateway>
public class MyAfterReturningAdvice implements AfterReturningAdvice {
@Override
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
//update db, send email, notify user.
}
}