1. 06 3月, 2015 3 次提交
    • B
      Break down Core and Web chapters in reference doc · 74072237
      Brian Clozel 提交于
      Core and Web chapters are important chapters in the Spring Framework
      reference documentation, and splitting them in multiple files will
      help to evolve the documentation while not creating too many files.
      
      Issue: SPR-12309
      74072237
    • B
      Modularize asciidoc documentation · 0baf228d
      Brian Clozel 提交于
      The reference documentation is now organized in asciidoc bookparts.
      Bookparts sections can be also put in separate files, when their
      size and theme are important enough to justify that.
      
      Documentation Layout:
      ```
      index
        |-- overview
        |
        |-- whats-new
        |
        |-- core
        |   |-- core-beans
        |   |-- core-aop
        |-- testing
        |
        |-- data-access
        |
        |-- web
        |   |-- web-mvc
        |   |-- web-view
        |-- integration
        |
        |-- appendix
            |-- appx-spring-tld
            |-- appx-spring-form-tld
      ```
      
      Supersedes and closes #641
      
      Issue: SPR-12309
      0baf228d
    • B
      Update Asciidoctor Gradle plugin · 503956d7
      Brian Clozel 提交于
      Upgrade to asciidoctor-gradle-plugin version 1.5.2.
      Various syntax fixes in the index.adoc reference documentation.
      503956d7
  2. 20 2月, 2015 1 次提交
    • S
      Document lifecycle issue with JNDI-based beans · facd2401
      Stephane Nicoll 提交于
      When a bean is retrieved via JNDI using Java config, we apply the same
      inferred more for destruction callbacks as for any other bean. If an
      object from the JNDI tree has a `close` or `shutdown` method, the
      context calls it when it shutdowns.
      
      Unfortunately, we have no way to know that the bean was retrieved via
      JNDI and that its lifecycle is managed outside the application.
      
      The documentation has been updated to reflect that problem explicitly.
      
      Issue: SPR-12551
      facd2401
  3. 19 2月, 2015 3 次提交
    • S
      Add Commons Pool 2 support · aabf73de
      Stephane Nicoll 提交于
      Deprecated CommonsPoolTargetSource (supporting commons pool 1.5+) in
      favor of CommonsPool2TargetSource with a similar contract.
      
      Commons Pool 2.x uses object equality while Commons Pool 1.x used
      identity equality. This clearly means that Commons Pool 2 behaves
      differently if several instances having the same identity according to
      their `Object#equals(Object)` method are managed in the same pool. To
      provide a smooth upgrade, a backward-compatible pool is created by
      default; use `setUseObjectEquality(boolean)` if you need the standard
      Commons Pool 2.x behavior.
      
      Issue: SPR-12532
      aabf73de
    • J
      Correct reference to executeAndReturnKey method · f20a6240
      Juergen Hoeller 提交于
      Issue: SPR-12639
      f20a6240
    • S
      Polish reference manual regarding WebSocket · c7a456c0
      Sam Brannen 提交于
       - fixed typos
       - improved grammar and punctuation
       - fixed class names
      c7a456c0
  4. 18 2月, 2015 1 次提交
  5. 12 2月, 2015 1 次提交
  6. 09 2月, 2015 1 次提交
    • S
      Clarify the use of @Cacheable in PostConstruct code · 29a6d24d
      Stephane Nicoll 提交于
      Update documentation to explicitly mention that the cache interceptor
      must be fully initialized to provide the expected behavior and therefore
      initialization code should not rely on this feature, i;e. typically in
      PostConstruct callback.
      
      Since the Transactional infrastructure has the exact same infrastructure,
      update that section of the doc as well.
      
      Issue: SPR-12700
      29a6d24d
  7. 30 1月, 2015 1 次提交
    • R
      Add support for Server-Sent Events · a32b5e61
      Rossen Stoyanchev 提交于
      This commit adds ResponseBodyEmitter and SseEmitter (and also
      ResponseEntity<ResponseBodyEmitter> and ResponseEntity<SseEmitter>) as
      new return value types supported on @RequestMapping controller methods.
      
      See Javadoc on respective types for more details.
      
      Issue: SPR-12212
      a32b5e61
  8. 24 1月, 2015 1 次提交
    • S
      Refer to static nested classes, not static inner classes · c5c32ec2
      Sam Brannen 提交于
      Various parts of the reference manual as well as the Javadoc for
      AnnotationConfigContextLoaderUtils improperly refer to "static inner
      classes" even though this terminology does not exist in Java. The Java
      Language Specification explicitly refers to such classes as "static
      nested classes." An "inner class" must be non-static by definition.
      c5c32ec2
  9. 23 1月, 2015 1 次提交
  10. 01 1月, 2015 1 次提交
  11. 29 12月, 2014 3 次提交
  12. 27 12月, 2014 1 次提交
    • S
      Specify SockJS protocol and client supported versions · a770b151
      Sebastien Deleuze 提交于
      In order to avoid breaking changed due to the upcoming SockJS 1.0
      release (see SPR-12422 for more details) and link to the right
      SockJS documentation version, we now explicitly specify that we
      support SockJS protocol 0.3.3 and SockJS client 0.3.x.
      a770b151
  13. 22 12月, 2014 1 次提交
    • S
      Better doc reference of CachingConfigurer · c4049a98
      Stephane Nicoll 提交于
      Update the documentation to better reflect the fact that a @EnableCaching
      configuration class must implement CachingConfigurer in order to provide
      advanced customizations to the cache abstraction.
      c4049a98
  14. 18 12月, 2014 2 次提交
  15. 10 12月, 2014 4 次提交
  16. 09 12月, 2014 1 次提交
  17. 06 12月, 2014 2 次提交
  18. 24 11月, 2014 2 次提交
    • S
      Fix typo · 2602bcbb
      Stephane Nicoll 提交于
      2602bcbb
    • S
      Fix documentation formatting · 0d00b674
      Stephane Nicoll 提交于
      Using the "quotes" substitution group by default leads to side effect
      when the "*" character is used. This is especially true for AOP pointcut
      or for MVC mappings.
      
      Plain verbatim might work most of the time unless you intend to highlight
      a piece of code or a comment.
      
      Issue: SPR-12456
      0d00b674
  19. 13 11月, 2014 1 次提交
  20. 06 11月, 2014 1 次提交
  21. 03 11月, 2014 3 次提交
    • S
      Log context cache statistics in the TCF · da04362a
      Sam Brannen 提交于
      Prior to this commit, finding out how many application contexts had
      been loaded within a test suite required the use of reflection and a
      bit of hacking.
      
      This commit addresses this issue by logging ContextCache statistics
      whenever an application context is loaded by the Spring TestContext
      Framework (TCF).
      
      The log output can be enabled by setting the
      "org.springframework.test.context.cache" logging category to DEBUG.
      
      Issue: SPR-12409
      da04362a
    • S
      Use unversioned XSD links in code examples · 8b5fda5a
      Sebastien Deleuze 提交于
      8b5fda5a
    • S
      Add documentation for the keep-alive flag · 6534d003
      Stephane Nicoll 提交于
      This commit updates the documentation of the task:executor element to
      reference the keep-alive flag.
      
      Issue: SPR-12407
      6534d003
  22. 29 10月, 2014 1 次提交
  23. 28 10月, 2014 1 次提交
  24. 27 10月, 2014 2 次提交
  25. 24 10月, 2014 1 次提交