Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Understanding DispatcherHandler

Pragya Keshap answered on February 18, 2023 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers

  • dispatch event javascript
  • js custom event dispatch
  • typescript react dispatch
  • js dispatch event with data
  • dispatch store
  • Dispatcher
  • dispatch event not working react native redux
  • action in catch error not dispatched
  • Create an event, event dispatcher and event subscriber - Drupal
  • Create an event, event dispatcher and event subscriber - Drupal
  • Create an event, event dispatcher and event subscriber - Drupal
  • Create an event, event dispatcher and event subscriber - Drupal
  • Create an event, event dispatcher and event subscriber - Drupal
  • DispatcherServlet
  • dispatch a common action redux all slice

  • Understanding DispatcherHandler

    0

    It processes requests in the following way:

    A web request is received by DispatcherHandler.

    DispatcherHandler uses HandlerMapping to find a matching handler for the request and uses the first match.

    It then uses the respective HandlerAdapter to process the request, which exposes the HandlerResult (return value after processing). The return value could be one of the following – ResponseEntity, ServerResponse, values returned from @RestController, or values (CharSequence, view, map, and so on) returned by a view resolver.

    Then, it makes use of the respective HandlerResultHandler to write the response or render a view based on the HandlerResult type received from step 2. ResponseEntityResultHandler is used for ResponseEntity, ServerResponseResultHandler is used for ServerResponse, ResponseBodyResultHandler is used for values returned by @RestController or @ResponseBody-annotated methods, and ViewResolutionResultHandler is used for values returned by the view resolver.

    The request is completed.

    https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/reactive/DispatcherHandler.html

    Popularity 1/10 Helpfulness 1/10 Language whatever
    Source: Grepper
    Tags: whatever
    Link to this answer
    Share Copy Link
    Contributed on Feb 18 2023
    Pragya Keshap
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.