1. 08 11月, 2018 2 次提交
  2. 07 11月, 2018 2 次提交
  3. 06 11月, 2018 10 次提交
  4. 05 11月, 2018 6 次提交
  5. 03 11月, 2018 2 次提交
    • R
      Polish · 133b8b0b
      Rossen Stoyanchev 提交于
      133b8b0b
    • J
      Upgrade to CGLIB 3.2.9 · dc8f6f71
      Juergen Hoeller 提交于
      This CGLIB upgrade literally does not make any difference to Spring users since its only purpose is a default ASM7 declaration in its AsmApi class (which we patched a month ago). We nevertheless leave our local AsmApi copy in place for the time being, allowing for an individual upgrade of the declared ASM API version in the future.
      
      Issue: SPR-17267
      Issue: SPR-17371
      dc8f6f71
  6. 02 11月, 2018 2 次提交
    • R
      Fix failing test · c2b55e60
      Rossen Stoyanchev 提交于
      After the fix #658c7f for lenient parsing of dates, the error message
      raised uses an HttpHeaders-formatted date. As a result the test
      verifying the error message fails in the beginning of the month between
      1-9 because it's formatted slightly differently.
      c2b55e60
    • R
      Polish · 48654c64
      Rossen Stoyanchev 提交于
      48654c64
  7. 01 11月, 2018 2 次提交
  8. 31 10月, 2018 3 次提交
    • R
      Fix since tag · 9da9bb96
      Rossen Stoyanchev 提交于
      9da9bb96
    • R
      Increase sharing among InvocableHandlerMethod variants · 3f42e161
      Rossen Stoyanchev 提交于
      In particular between reactive and non-reactive web variants, but
      also preparing for a messaing reactive variant.
      3f42e161
    • R
      Consistent InvocableHandlerMethod implementations · 7c36549e
      Rossen Stoyanchev 提交于
      This commit makes the 3 existing InvocableHandlerMethod types more
      consistent and comparable with each other.
      
      1. Use of consistent method names and method order.
      
      2. Consistent error formatting.
      
      3. Explicit for loops for resolving argument values in webflux variant
      because that makes it more readable, creates less garabage, and it's
      the only way to bring consistency since the other two variants cannot
      throw exceptions inside Optional lambdas (vs webflux variant which can
      wrap it in a Mono).
      
      4. Use package private HandlerMethodArgumentComposite in webflux
      variant in order to pick up the resolver argument caching that the
      other two variants have.
      
      5. Polish tests.
      
      6. Add missing tests for messaging variant.
      7c36549e
  9. 30 10月, 2018 1 次提交
  10. 29 10月, 2018 7 次提交
  11. 27 10月, 2018 2 次提交
  12. 26 10月, 2018 1 次提交
    • B
      Configure ResourceUrlProvider in WebFlux · fc957e95
      Brian Clozel 提交于
      Prior to this commit, no `ResourceUrlProvider` was configured
      in WebFlux (no bean was contributed by the WebFlux infrastructure).
      Also, several `ResourceTransformer` instances that extend the
      `ResourceTransformerSupport` base class need a `ResourceUrlProvider`
      to resolve absolute URLs when rewriting resource URLs. At this point,
      no `ResourceUrlProvider` was configured and they could only resolve
      relative URLs.
      
      This commit contributes a new `ResourceUrlProvider` to the WebFlux
      configuration; this bean can be reused by the WebFlux infrastructure and
      application code.
      
      This also automatically configure this shared `ResourceUrlProvider`
      instance on the resource chain where needed.
      
      Issue: SPR-17433
      fc957e95