1. 25 10月, 2018 5 次提交
    • J
      Upgrade to Checkstyle 8.14 · 56a8526f
      Juergen Hoeller 提交于
      56a8526f
    • J
      fb2565f2
    • B
      Fix ResourceUrlEncodingFilter lifecycle · 50a47691
      Brian Clozel 提交于
      Prior to this commit, the `ResourceUrlEncodingFilter` would wrap the
      response and keep a reference to the request. When
      `HttpServletResponse.encodeURL` is later called during view rendering,
      the filter looks at the request and extracts context mapping information
      in order to resolve resource paths in views.
      
      This approach is flawed, when the filter is used with JSPs - if the
      request is forwarded to the container by the `InternalResourceView`,
      the request information is overwritten by the container. When the view
      is being rendered, the information available in the request is outdated
      and does not allow to correctly compute that context mapping
      information.
      
      This commit ensures that that information is being extracted from the
      request as soon as the `ResourceUrlProvider` is set as a request
      attribute.
      
      Issue: SPR-17421
      50a47691
    • J
      Polishing · ffa032e7
      Juergen Hoeller 提交于
      ffa032e7
    • J
      Support for @RequestParam Map declared with MultipartFile/Part values · f0f1979f
      Juergen Hoeller 提交于
      Issue: SPR-17405
      f0f1979f
  2. 24 10月, 2018 8 次提交
  3. 23 10月, 2018 7 次提交
  4. 22 10月, 2018 11 次提交
  5. 20 10月, 2018 1 次提交
    • R
      Server adapters release buffers on error/cancel · 862dd239
      Rossen Stoyanchev 提交于
      Review and update Servlet and Undertow adapters to release any data
      buffers they be holding on to at the time of error or cancellation.
      
      Also remove onDiscard hooks from Reactor and Undertow request body.
      For Reactor we expect it to be handled. For Undertow there isn't
      any Reactor Core upstream for the callback to be useful.
      
      Issue: SPR-17410
      862dd239
  6. 19 10月, 2018 7 次提交
  7. 18 10月, 2018 1 次提交