类 HandlerExecutionChain

所有已实现的接口:
HandlerAdapterAware, HandlerWrapper, HandlerInterceptorsProvider, HttpRequestHandler

public class HandlerExecutionChain extends InterceptableRequestHandler implements HandlerWrapper, HandlerAdapterAware
Handler execution chain, consisting of handler object and any handler interceptors. Returned by HandlerMapping's HandlerMapping.getHandler(cn.taketoday.web.RequestContext) method.
从以下版本开始:
4.0 2022/5/22 22:42
作者:
Juergen Hoeller, Harry Yang
另请参阅:
  • 字段详细资料

  • 构造器详细资料

    • HandlerExecutionChain

      public HandlerExecutionChain(Object handler)
      Create a new HandlerExecutionChain.
      参数:
      handler - the handler object to execute
    • HandlerExecutionChain

      public HandlerExecutionChain(Object handler, @Nullable HandlerInterceptor... interceptors)
      Create a new HandlerExecutionChain.
      参数:
      handler - the handler object to execute
      interceptors - the array of interceptors to apply (in the given order) before the handler itself executes
  • 方法详细资料