1. 14 9月, 2016 3 次提交
  2. 13 9月, 2016 2 次提交
  3. 12 9月, 2016 7 次提交
  4. 10 9月, 2016 8 次提交
  5. 09 9月, 2016 5 次提交
  6. 08 9月, 2016 1 次提交
  7. 07 9月, 2016 10 次提交
    • A
      Removed unnecessary Driver file · 10e157a5
      Arjen Poutsma 提交于
      10e157a5
    • A
      Polishing · f8ac17f2
      Arjen Poutsma 提交于
      Two changes to web.reactive.function:
      
       - Changed Response.stream method to allow for specific Publisher types
       to be returned in Response.
      
       - Router now stores HttpMessageReader|Writer retrieved from
       Configuration in the attributes as supplier, not as stream, to allow
       for multiple reads.
      f8ac17f2
    • B
      Fix default encoding in CONTRIBUTING documentation · d1f60e3d
      Brian Clozel 提交于
      Sources should be using UTF-8.
      
      Issue: SPR-14674
      d1f60e3d
    • A
      Removed attributes() from Request · bebaee97
      Arjen Poutsma 提交于
      Removes attributes() method from Request, as it exposes a mutable map.
      bebaee97
    • B
      Add ResolvedResource in resource handling chain · ccb3c44d
      Brian Clozel 提交于
      Prior to this commit, the resource handling chain and its
      `ResourceResolvers` would use specific `Resource` implementations in
      order to add resource metadata to the HTTP response. For example,
      `VersionedResource` and `EncodedResource` are both adding specific HTTP
      response headers.
      
      This commit aims at making this mechanism more stable and reusable,
      since the previous implementation would fail in case a resolved resource
      would be both a `VersionedResource` wrapping a `EncodedResource` (or the
      other way arount). Only one of the specific implementations would
      contribute its metadata since the code supporting that in
      `ResourceHttpRequestHandler` would only check for `instanceof` tests,
      whereas those implementations are acutally delegating calls to
      the wrapped resource.
      
      Now both `VersionedResource` and `EncodedResource` have been replaced by
      specific implementations of `ResolvedResource`, which directly provides
      those HTTP response headers as part of `getResponseHeaders()`.
      
      This commit applies the same changes for the web reactive
      implementations and its `ResourceWebHandler`.
      
      Issue: SPR-14264
      ccb3c44d
    • A
      Update CONTRIBUTING.md · 42f101fb
      Artem Yakshin 提交于
      42f101fb
    • A
      Update README.md · 5496f11f
      Artem Yakshin 提交于
      5496f11f
    • S
      Merge pull request #1158 from nkjackzhang:patch-6 · 05369a2f
      Stephane Nicoll 提交于
      * pr/1158:
        Fix typo
      05369a2f
    • N
      Fix typo · 00bc0b45
      nkjackzhang 提交于
      Closes gh-1158
      00bc0b45
    • B
      Align MVC checkNotModified with reactive support · cc5300c4
      Brian Clozel 提交于
      Since SPR-14522, the web reactive framework supports checkNotModified
      features. This commit aligns the existing MVC infrastructure with
      web reactive's behavior.
      
      Because of the new Servlet 3.0 baseline, some constraints
      aren't relevant anymore and duplicate code has been removed in
      `HttpEntityMethodProcessor`.
      
      Issue: SPR-14659
      cc5300c4
  8. 06 9月, 2016 4 次提交