1. 31 7月, 2015 1 次提交
  2. 29 7月, 2015 1 次提交
  3. 08 7月, 2015 2 次提交
    • S
      Support for multiple events per method · bf786c31
      Stephane Nicoll 提交于
      In addition to specifying the event type to listen to via a method
      parameter, any @EventListener annotated method can now alternatively
      define the event type(s) to listen to via the "classes" attributes (that
      is aliased to "value").
      
      Something like
      
      @EventListener({FooEvent.class, BarEvent.class})
      public void handleFooBar() { .... }
      
      Issue: SPR-13156
      bf786c31
    • S
      Polishing · 50bed38a
      Sam Brannen 提交于
      50bed38a
  4. 07 7月, 2015 2 次提交
  5. 24 6月, 2015 1 次提交
  6. 15 6月, 2015 2 次提交
  7. 11 6月, 2015 1 次提交
  8. 18 5月, 2015 2 次提交
  9. 09 5月, 2015 1 次提交
  10. 07 5月, 2015 1 次提交
  11. 31 3月, 2015 1 次提交
  12. 09 3月, 2015 1 次提交
    • S
      `@Configuration` doc improvements · c7fcf7cd
      Stephane Nicoll 提交于
      Various documentation improvements related to `@Configuration` and
      `Bean`. Better describe how method parameter can be used to declare
      dependencies of a particular bean. Also add an explicit mentions related
      to "hard-wiring" of dependencies in configuration classes.
      
      Issue: SPR-12773
      c7fcf7cd
  13. 07 3月, 2015 1 次提交
    • S
      Fix Admonition syntax · bd6d9745
      Stephane Nicoll 提交于
      The upgrade to a more recent asciidoc format led to a bunch of of
      broken Admonition as the text block now requires four equal signs while
      previous versions tolerated only 3.
      
      Issue: SPR-12791
      bd6d9745
  14. 06 3月, 2015 2 次提交
    • 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