1. 23 2月, 2016 2 次提交
  2. 20 2月, 2016 1 次提交
  3. 19 2月, 2016 1 次提交
    • P
      Refine AntPathMatcher optimizations · c4117885
      Phillip Webb 提交于
      Refine the optimizations made in 6f55ab69 in order to restore binary
      compatibility and resolve a regression.
      
      Tests of the form pathMatcher.match("/foo/bar/**", "/foo/bar") should
      return true as this was the behavior in Spring 4.2.
      
      Issue: SPR-13913
      c4117885
  4. 17 2月, 2016 1 次提交
  5. 12 2月, 2016 2 次提交
  6. 10 2月, 2016 1 次提交
    • S
      Improve AntPathMatcher matching performance · e77ff3c9
      soldierkam 提交于
      This commit speeds up the AntPathMatcher implementation by
      pre-processing patterns and checking that candidates are likely
      matches if they start with the static prefix of the pattern.
      
      Those changes can result in a small performance penalty for positive
      matches, but with a significant boost for checking candidates that don't
      match. Overall, this tradeoff is acceptable since this feature is often
      used to select a few matching patterns in a much bigger list.
      
      This will lead to small but consistent performance improvements in
      Spring MVC when matching a given request with the available routes.
      
      Issue: SPR-13913
      e77ff3c9
  7. 08 2月, 2016 1 次提交
  8. 05 2月, 2016 1 次提交
  9. 27 1月, 2016 1 次提交
  10. 26 1月, 2016 2 次提交
  11. 16 1月, 2016 1 次提交
  12. 15 1月, 2016 2 次提交
    • S
      Update copyright header · 2fc2c29e
      Stephane Nicoll 提交于
      2fc2c29e
    • R
      Refine ListenableFutureCallback policy for exceptions · 3dae3fd8
      Rossen Stoyanchev 提交于
      This change updates all cases where callbacks are invoked to catch and
      suppress errors (since there is not match to do with and error from
      a callback be it success or failure).
      
      Also updated is the contract itself to clarify this and emphasize the
      callbacks are really notifications for the outcome of the
      ListenableFuture not the callbacks themselves.
      
      Issue: SPR-13785
      3dae3fd8
  13. 13 1月, 2016 1 次提交
  14. 30 12月, 2015 5 次提交
  15. 24 12月, 2015 2 次提交
  16. 22 12月, 2015 3 次提交
  17. 19 12月, 2015 2 次提交
  18. 18 12月, 2015 2 次提交
  19. 14 12月, 2015 1 次提交
  20. 12 12月, 2015 2 次提交
  21. 10 12月, 2015 1 次提交
  22. 08 12月, 2015 1 次提交
  23. 07 12月, 2015 1 次提交
  24. 04 12月, 2015 1 次提交
  25. 03 12月, 2015 1 次提交
  26. 01 12月, 2015 1 次提交
    • J
      ObjectToObjectConverter caches detected methods/constructors · 44651fdf
      Juergen Hoeller 提交于
      This commit reworks the arrangement to a centralized cache, avoiding any extra reflection attempts if a cache entry is known already. In the course of this, it also enforces toXXX methods to be declared as non-static now (which is the only sensible arrangement anyway).
      
      Issue: SPR-13703
      44651fdf