1. 26 9月, 2018 1 次提交
  2. 23 9月, 2018 1 次提交
  3. 22 9月, 2018 1 次提交
    • J
      Editing pass for the integration and languages chapters. · 6d226326
      Jay Bryant 提交于
      I edited for spelling, puncutation, grammar, usage, and corporate voice. I also added a bunch of cross-references and links to the Javadoc.
      
      I also corrected the rendering problems that I had accidentally created in previous commits (because I was adjusting headings and adding callouts to listings.
      6d226326
  4. 21 9月, 2018 4 次提交
  5. 20 9月, 2018 1 次提交
  6. 19 9月, 2018 1 次提交
  7. 18 9月, 2018 7 次提交
  8. 07 9月, 2018 1 次提交
    • S
      Fix Kotlin inner class nested configuration handling · 8d45e3e7
      Sebastien Deleuze 提交于
      Before this commit, Kotlin inner class nested configuration
      handling thrown an IndexOutOfBoundsException due to bogus filtering
      of its constructor parameter reference to an instance of the outer
      class.
      
      This commit keep constructor parameter of type INSTANCE in order to
      throw a more meaningful NoSuchBeanDefinitionException.
      
      Issue: SPR-17222
      8d45e3e7
  9. 06 9月, 2018 1 次提交
    • R
      Refine ReactorResourceFactory · d537a1cf
      Rossen Stoyanchev 提交于
      1. Rename globalResources to useGlobalResources.
      2. Use of global resources is mutually exlusive with explicit config.
      3. Allow Consumer<HttpResources> to configure global resources.
      4. Allow ConnectionProvider + LoopResources Supplier to customize
         creation and initialization.
      5. Do not manage externally provided ConnectionProvider + LoopResources
         instances.
      
      Issue: SPR-17243
      d537a1cf
  10. 23 8月, 2018 1 次提交
  11. 20 8月, 2018 1 次提交
  12. 17 8月, 2018 1 次提交
    • S
      Introduce JettyResourceFactory · 1eb06fcd
      Sebastien Deleuze 提交于
      JettyResourceFactory, similar to ReactorResourceFactory, allows
      to share resources (Executor, ByteBufferPool, Scheduler) between
      Jetty clients and servers.
      
      Issue: SPR-17179
      1eb06fcd
  13. 16 8月, 2018 2 次提交
  14. 15 8月, 2018 5 次提交
    • S
      Fix merge conflict in reference manual · 4d7b2652
      Sam Brannen 提交于
      4d7b2652
    • B
      Revert "Infer HTTP 404 from empty Optional/Publisher types" · f2506ca7
      Brian Clozel 提交于
      This reverts commit 7e917335.
      f2506ca7
    • S
      Polishing · a87b319a
      Sam Brannen 提交于
      a87b319a
    • B
      Infer HTTP 404 from empty Optional/Publisher types · 7e917335
      Brian Clozel 提交于
      This commit handles "empty" cases for `ResponseEntity` controller
      handler return types when wrapped with a `java.util.Optional` in Spring
      MVC or a single `Publisher` like `Mono`.
      
      Given the following example for Spring MVC:
      
      ```
      @GetMapping("/user")
      public Optional<ResponseEntity<User>> fetchUser() {
      	Optional<User> user = //...
      	return user.map(ResponseEntity::ok);
      }
      ```
      
      If the resulting `Optional` is empty, Spring MVC will infer a
      `ResponseEntity` with an empty body and a 404 HTTP response status.
      
      The same reasoning is applied to Spring WebFlux with Publisher types:
      
      ```
      @GetMapping("/user")
      public Mono<ResponseEntity<User>> fetchUser() {
      	Mono<User> user = //...
      	return user.map(ResponseEntity::ok);
      }
      ```
      
      This feature is only valid for `HttpEntity` return types and does not
      apply to `@ResponseBody` controller handlers.
      
      Issue: SPR-13281
      7e917335
    • J
      Revised documentation for PDF, Excel and JSON views · c0c9e08b
      Juergen Hoeller 提交于
      Issue: SPR-17180
      Issue: SPR-17182
      c0c9e08b
  15. 14 8月, 2018 2 次提交
  16. 12 8月, 2018 1 次提交
  17. 09 8月, 2018 2 次提交
  18. 08 8月, 2018 3 次提交
  19. 03 8月, 2018 2 次提交
  20. 01 8月, 2018 2 次提交