1. 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
  2. 20 4月, 2016 14 次提交
  3. 19 4月, 2016 8 次提交
  4. 17 4月, 2016 1 次提交
  5. 16 4月, 2016 10 次提交
  6. 15 4月, 2016 3 次提交
    • R
      Add abstract case class HandlerMappings · 33a7b91e
      Rossen Stoyanchev 提交于
      This commit adds AbstractHandlerMethodMapping, a starting point for
      AbstractHandlerMapping, and HttpRequestPathHelper with a similar
      purpose to UrlPathHelper but based with ServerWebExchange as input.
      33a7b91e
    • R
      Add "result" package under ~.web.reactive · 341f23e0
      Rossen Stoyanchev 提交于
      The new package is parallel to the "mvc" package under spring-webmvc
      and a place to hold the various programming model styles.
      341f23e0
    • R
      Polish "simple" handler support · 3460e577
      Rossen Stoyanchev 提交于
      - correct name of HttpHandlerHandlerAdapter to WebHandlerHandlerAdapter
      - shorten SimpleHandlerResultHandler to SimpleResultHandler
      - add HandlerResult constructor without Model
      - update tests
      3460e577
  7. 11 4月, 2016 1 次提交
  8. 09 4月, 2016 1 次提交
    • B
      Accept all media types in StringDecodere · a3b371bf
      Brian Clozel 提交于
      This commit adds the "*/*" media type in the list of compatible media
      types for the StringDecoder. This allows this decoder to decoder
      payloads of any media type as long as the target type is String.
      
      Fixes #87
      a3b371bf
  9. 08 4月, 2016 1 次提交