1. 26 5月, 2016 1 次提交
  2. 04 5月, 2016 1 次提交
  3. 22 4月, 2016 1 次提交
    • R
      Updates to WebHandler support · df7c8e55
      Rossen Stoyanchev 提交于
      Rename two classes each adapting to WebHandler to avoid confusing them:
      1. HttpWebHandlerAdapter adapts from the low level HttpHandler to any
      WebHandler (e.g. DispatcherHandler).
      2. SimpleHandlerAdapter adapts the plain WebHandler for use within the
      DispatcherHandler.
      
      This commit also fixes an issue in WebHttpHandlerBuilder to ensure that
      WebExceptionHandler's are inserted before and not after WebFilter's.
      df7c8e55
  4. 21 4月, 2016 1 次提交
    • R
      BadRequestStatusException -> ServerWebInputException · dd607d3e
      Rossen Stoyanchev 提交于
      The renaming makes it clear this exception is for use where 400 error
      applies within a Spring web application where the error may be
      associated with a MethodParameter, a BindingResult, and so on.
      
      There is no need for BadRequestStatusException which can be expressed
      with ResponseStatusException(HttpStatus.BAD_REQUEST, "reason").
      dd607d3e
  5. 20 4月, 2016 4 次提交
  6. 19 4月, 2016 3 次提交
  7. 16 4月, 2016 1 次提交
    • R
      Add RequestCondition hierarchy · b2ca2164
      Rossen Stoyanchev 提交于
      A pretty complete equivalent to the same in spring-webmvc except for
      CORS checks, and custom HTTP methods. Another notable difference is
      that the "params" condition works on query params strictly.
      b2ca2164
  8. 15 4月, 2016 2 次提交