1. 06 6月, 2016 1 次提交
  2. 27 5月, 2016 1 次提交
  3. 26 5月, 2016 3 次提交
  4. 20 4月, 2016 1 次提交
    • A
      Wrapping up zero-copy support · 804f69c8
      Arjen Poutsma 提交于
      This commit wraps up the previous commits:
      
       - It uses HttpMessageConverter in the web.reactive.server package instead of Encoder/Decoder.
       - It introduces tests for the Resource @ResponseBodies.
      804f69c8
  5. 15 4月, 2016 1 次提交
  6. 18 3月, 2016 1 次提交
  7. 09 2月, 2016 1 次提交
  8. 27 1月, 2016 1 次提交
  9. 23 11月, 2015 1 次提交
    • R
      Remove top-level org.springfamework.reactive package · 4a3c0bc3
      Rossen Stoyanchev 提交于
      reactive.codec -> core.codec
      reactive.io    -> util
      
      These may very well not be the final locations. For now they simply
      express that there are classes that belong somewhere in core, i.e.
      they are lower level dependencies than web.
      4a3c0bc3
  10. 14 11月, 2015 2 次提交
    • R
      Refactor package structure for web · 81867fa4
      Rossen Stoyanchev 提交于
      The web related code is now under org.springframework.web.reactive.
      This is parallel to org.springframework.web (the top-level package of
      spring-webmvc).
      81867fa4
    • S
      Add a ResolvableType field to HandlerResult · c6713c23
      Sebastien Deleuze 提交于
      This change allows to be able to check generic type on the return value
      at HandlerAdapter and ResultHandler level. For example, it allows to do
      a Publisher<Void> check in SimpleHandlerResultHandler.
      c6713c23
  11. 31 10月, 2015 2 次提交
  12. 29 10月, 2015 1 次提交
    • S
      Add handler method parameter and result converters · adc50bbf
      Sebastien Deleuze 提交于
      This commit introduces the following changes:
       - Publisher -> Observable/Stream/etc. conversion is now managed
          in a dedicated ConversionService instead of directly in
          RequestBodyArgumentResolver and ResponseBodyResultHandler
       - More isolated logic that decides if the stream should be
          serialized as a JSON array or not
       - Publisher<ByteBuffer> are now handled by regular
         ByteBufferEncoder and ByteBufferDecoder
       - Handle Publisher<Void> return value properly
       - Ensure that the headers are properly written even for response
         without body
       - Improve JsonObjectEncoder to autodetect JSON arrays
      adc50bbf
  13. 03 10月, 2015 1 次提交