1. 20 4月, 2016 9 次提交
  2. 19 4月, 2016 8 次提交
  3. 17 4月, 2016 1 次提交
  4. 16 4月, 2016 10 次提交
  5. 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
  6. 11 4月, 2016 1 次提交
  7. 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
  8. 08 4月, 2016 2 次提交
  9. 07 4月, 2016 5 次提交
    • B
      Support "text/*" media types in StringDecoder · 023dafa9
      Brian Clozel 提交于
      023dafa9
    • B
      Polish · e3f87b3e
      Brian Clozel 提交于
      e3f87b3e
    • B
      Improve ClientHttpRequestFactory javadoc · 09327181
      Brian Clozel 提交于
      This commit underlines the fact that the request created by a
      ClientHttpRequestFactory should be augmented with a message body using
      the `ClientHttpRequest#setBody` method before it is executed.
      
      See #82
      09327181
    • B
      Polish HttpRequestBuilder API · ddf996cf
      Brian Clozel 提交于
      This commit makes messageEncoders a required argument for building a
      client request - those are needed to actually encode the body object as
      a reactive stream to be written to the HTTP request body.
      
      Removed raw types usage in DefaultHttpRequestBuilder.
      
      DefaultHttpRequestBuilder now uses a UriTemplateHandler to expand URI
      templates + variables into a concrete URI.
      
      Fixes #80, fixes #85, fixes #86
      ddf996cf
    • B
      Propagate Errors in DefaultHttpRequestBuilder · 8ed2925c
      Brian Clozel 提交于
      This commit introduces the new `WebClientException` for wrapping
      client-side exceptions.
      This exception is now thrown when now message encoder can be found for
      writing the request body as an HTTP request message.
      
      Fixes #83
      8ed2925c