1. 20 5月, 2014 1 次提交
  2. 15 5月, 2014 2 次提交
  3. 30 4月, 2014 1 次提交
  4. 29 4月, 2014 3 次提交
  5. 24 4月, 2014 1 次提交
  6. 22 4月, 2014 1 次提交
  7. 21 4月, 2014 1 次提交
  8. 17 4月, 2014 1 次提交
  9. 02 4月, 2014 1 次提交
    • S
      Add exception handling of asynchronous method · db23ec73
      Stephane Nicoll 提交于
      Prior to this commit, an exception thrown by an @Async void method
      was not further processed as there is no way to transmit that
      exception to the caller.
      
      The AsyncUncaughtExceptionHandler is a new strategy interface that
      can be implemented to handle unexpected exception thrown during the
      invocation of such asynchronous method.
      
      The handler can be specified using either the XML namespace or by
      implementing the AsyncConfigurer interface with the EnableAsync
      annotation.
      
      Issue: SPR-8995
      db23ec73
  10. 01 4月, 2014 1 次提交
    • S
      javax.annotation.Priority alternative to @order · dcf5f4a6
      Stephane Nicoll 提交于
      This commit rationalizes the use of @order so that the standard
      @Priority annotation can be used instead. The handling of both
      annotations are now defined in OrderUtils.
      
      This also updates the link to the JavaEE API so that we refer to
      JavaEE7 instead of JavaEE6.
      
      Issue: SPR-11639
      dcf5f4a6
  11. 21 3月, 2014 1 次提交
    • S
      Harmonize log configuration · 4cd818b9
      Stephane Nicoll 提交于
      Prior to this commit, the codebase was using a mix of log4j.xml
      and log4j.properties for test-related logging configuration. This
      can be an issue as log4j takes the xml variant first when looking
      for a default bootstrap configuration.
      
      In practice, some modules declaring the properties variant were
      taking the xml variant configuration from another module.
      
      The general structure of the configuration has also been
      harmonized to provide a standard console output as well as an
      easy way to enable trace logs for the current module.
      4cd818b9
  12. 15 3月, 2014 1 次提交
  13. 12 2月, 2014 1 次提交
  14. 09 2月, 2014 1 次提交
    • S
      Polish test classes · 1f778530
      Sam Brannen 提交于
      - Consistent importing of org.junit.Assert.*;
      - Proper declaration of expected exceptions via @test(expected).
      - Renamed SpEL ExpressionTestCase to AbstractExpressionTests.
      - Formatting and test method naming conventions.
      1f778530
  15. 07 2月, 2014 1 次提交
  16. 26 1月, 2014 1 次提交
  17. 23 1月, 2014 2 次提交
  18. 22 1月, 2014 1 次提交
  19. 21 1月, 2014 1 次提交
  20. 05 1月, 2014 3 次提交
  21. 17 12月, 2013 1 次提交
  22. 11 12月, 2013 1 次提交
  23. 09 12月, 2013 1 次提交
  24. 02 12月, 2013 1 次提交
  25. 27 11月, 2013 1 次提交
  26. 26 11月, 2013 2 次提交
    • E
      Fix various typos · e9f78f60
      Eric Dahl 提交于
      Fix a variety of typos throughout the project, primarily in
      comments (javadoc or otherwise) but also in a handful of log messages
      and a couple exception messages.
      
      ISSUE: SPR-11123
      e9f78f60
    • P
      Fix remaining compiler warnings · 59002f24
      Phillip Webb 提交于
      Fix remaining Java compiler warnings, mainly around missing
      generics or deprecated code.
      
      Also add the `-Werror` compiler option to ensure that any future
      warnings will fail the build.
      
      Issue: SPR-11064
      59002f24
  27. 05 11月, 2013 1 次提交
  28. 30 10月, 2013 1 次提交
  29. 27 9月, 2013 1 次提交
  30. 13 9月, 2013 1 次提交
    • O
      Add support for Objenesis proxy creation. · 1f9e8f68
      Oliver Gierke 提交于
      Extended DefaultAopProxyFactory to create Objenesis based proxies if the
      library is on the classpath. This allows classes without a default
      constructor being CGLib proxied. We're now falling back to original CGLib
      based behavior in case the proxy creation using Objenesis fails.
      
      Objenesis 2.0 is now inlined into spring-core to avoid interfering with
      other Objenesis versions on the classpath.
      
      Issue: SPR-10594
      1f9e8f68
  31. 28 8月, 2013 1 次提交
  32. 23 8月, 2013 1 次提交
  33. 08 8月, 2013 1 次提交
    • J
      Introduced DefaultParameterNameDiscoverer which checks JDK 8's standard... · 1420b970
      Juergen Hoeller 提交于
      Introduced  DefaultParameterNameDiscoverer which checks JDK 8's standard reflection first and then falls back to ASM-based debug symbol analysis
      
      Also, StandardReflectionParameterNameDiscoverer calls "Parameter.isNamePresent()" now to return null (and pass on to the next discoverer) if no JDK 8 parameters are available. Note that this requires OpenJDK 8 b100 or higher to compile now.
      
      Issue: SPR-10532
      1420b970