对于最新的稳定版本,请使用 Spring Integration 6.4.0spring-doc.cn

自定义建议类

除了前面描述的提供的 advice 类之外,您还可以实现自己的 advice 类。 虽然您可以提供 (通常) 的任何实现,但我们通常建议您将 子类 . 这样做的好处是避免编写低级面向方面的编程代码,并提供专门为此环境定制的起点。org.aopalliance.aop.Adviceorg.aopalliance.intercept.MethodInterceptoro.s.i.handler.advice.AbstractRequestHandlerAdvicespring-doc.cn

子类需要实现该方法,其定义如下:doInvoke()spring-doc.cn

/**
 * Subclasses implement this method to apply behavior to the {@link MessageHandler} callback.execute()
 * invokes the handler method and returns its result, or null).
 * @param callback Subclasses invoke the execute() method on this interface to invoke the handler method.
 * @param target The target handler.
 * @param message The message that will be sent to the handler.
 * @return the result after invoking the {@link MessageHandler}.
 * @throws Exception
 */
protected abstract Object doInvoke(ExecutionCallback callback, Object target, Message<?> message) throws Exception;

callback 参数可以方便地避免直接处理 AOP 的子类。 调用该方法将调用消息处理程序。callback.execute()spring-doc.cn

该参数是为那些需要维护特定处理程序的状态的子类提供的,可能是通过将该状态维护在目标的键中。 此功能允许将相同的建议应用于多个处理程序。 uses 建议 this 以保持每个处理程序的断路器状态。targetMapRequestHandlerCircuitBreakerAdvicespring-doc.cn

参数是发送到处理程序的消息。 虽然 advice 无法在调用处理程序之前修改消息,但它可以修改有效负载(如果它具有可变属性)。 通常,通知会使用该消息进行日志记录,或者在调用处理程序之前或之后的某个位置发送消息的副本。messagespring-doc.cn

返回值通常是 返回的值。 但是,该建议确实能够修改返回值。 请注意,只有实例返回值。 以下示例显示了一个扩展的自定义 advice 类:callback.execute()AbstractReplyProducingMessageHandlerAbstractRequestHandlerAdvicespring-doc.cn

public class MyAdvice extends AbstractRequestHandlerAdvice {

    @Override
    protected Object doInvoke(ExecutionCallback callback, Object target, Message<?> message) throws Exception {
        // add code before the invocation
        Object result = callback.execute();
        // add code after the invocation
        return result;
    }
}

除了方法之外, 还提供了一个附加方法: . 在单次执行中可能多次调用调用的情况下,必须使用此方法,例如在 . 这是必需的,因为 Spring AOP 对象通过跟踪链中的哪个通知最后被调用来维护状态。 必须为每个调用重置此状态。execute()ExecutionCallbackcloneAndExecute()doInvoke()RequestHandlerRetryAdviceorg.springframework.aop.framework.ReflectiveMethodInvocationspring-doc.cn

有关更多信息,请参阅 ReflectiveMethodInvocation Javadoc。spring-doc.cn