0

我正在使用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.
    }
}
4

1 回答 1

1

是您的ExpressionEvaluatingRequestHandlerAdvice.onSuccessExpression()最佳选择。它EvaluationContextBeanFactory感知的,因此您绝对可以从该表达式中调用任何 bean。那里作为根Message对象提供的对象是获取有关下载文件的信息的良好候选者。

所以,这就是你可以在那里做的事情:

<bean class="org.springframework.integration.handler.advice.ExpressionEvaluatingRequestHandlerAdvice">
    <property name="onSuccessExpressionString" value="@myBean.myMethod(#root)"/>
</bean>

您可以对onFailureExpression.

另一方面,您甚至可能不需要担心表达式中的 bean 访问。有ExpressionEvaluatingRequestHandlerAdvicesuccessChannel选项failureChannel。因此,带有结果的消息可以发送到那里,并且<service-activator>您的 bean 中的一些可以处理该通道上的消息。

于 2018-02-02T14:03:33.603 回答