1. 12 1月, 2018 5 次提交
    • A
      Use DataBufferUtils.compose and remove writeAggregator · 67e7c784
      Arjen Poutsma 提交于
      Use DataBufferUtils.compose instead of writeAggregator to combine
      multiple data buffers into one, as the write aggregator would not work
      when the initial data buffer did not have enough capacity to contain
      all subsequent buffers.
      
      Removed writeAggregator, as it is no longer needed.
      
      Issue: SPR-16365
      67e7c784
    • A
      Add DataBufferUtils.compose · 384a399f
      Arjen Poutsma 提交于
      Added a utility method that composes data buffers into a single buffer.
      Depending on the `DataBuffer` implementation, the returned buffer may be
      a single buffer containing all data of the provided buffers, or it may
      be a true composite that contains references to the buffers.
      
      Issue: SPR-16365
      384a399f
    • R
      Refine UriTemplate match pattern · c60313de
      Rossen Stoyanchev 提交于
      The match/matches methods of UriTemplate use a regex with (.*) in place
      of URI variables, which work fine except in the end where such a
      pattern can match greedily more than one segment.
      
      This commit updates the regex to use ([^/]*) instead since URI
      variables are only meant to be used within a single path segment.
      
      Issue: SPR-16169
      c60313de
    • R
      Update Javadoc for AbstractHandlerMapping properties · 84b8ceca
      Rossen Stoyanchev 提交于
      Clarify what PathPatternParser is used for which is CORS checks in the
      very least. Some sub-classes will also use it for request mapping but
      not all (e.g. RouterFunctionMapping). Hence the need to be more
      explicit.
      84b8ceca
    • R
      Refine @EnableWebFlux docs for functional endpoints · 72e3c433
      Rossen Stoyanchev 提交于
      @EnableWebFlux bootstraps both annotated controllers and functional
      endpoints, so we need to be more explicit about which parts of the
      configuration apply to which.
      
      Issue: SPR-16360
      72e3c433
  2. 11 1月, 2018 7 次提交
  3. 10 1月, 2018 14 次提交
  4. 09 1月, 2018 7 次提交
  5. 08 1月, 2018 7 次提交