1. 04 11月, 2016 2 次提交
    • J
      ApplicationListenerDetector ignores non-managed bean instances · 8ae0bd6e
      Juergen Hoeller 提交于
      Issue: SPR-14879
      8ae0bd6e
    • B
      Fix Exception Handling result handler resolution · 95abd18f
      Brian Clozel 提交于
      Prior to this commit, the wrong `HandlerResultHandler` could be
      resolved when handling exceptions; this could happen only if the
      original handler and exception handler had different signatures:
      
      ```
      Publisher<String> originalHandler() { ... }
      
      @ExceptionHandler(MyCustomException.class)
      ResponseEntity<Mono<String>> handleException() { ... }
      ```
      
      In that case, the `ResponseBodyResultHandler` would be used when
      handling exceptions instead of the `ResponseEntityResultHandler`.
      
      This commit ensures that the `HandlerResult` returned by the exception
      handler is used to resolve the `HandlerResultHandler`. The latter will
      process the result and use it to write to the HTTP response.
      
      Issue: SPR-14876
      95abd18f
  2. 03 11月, 2016 6 次提交
  3. 02 11月, 2016 11 次提交
  4. 01 11月, 2016 4 次提交
    • J
      Polishing · b07d40cc
      Juergen Hoeller 提交于
      (cherry picked from commit 77e00f19)
      b07d40cc
    • R
      ApplicationContext-based HttpHandler setup · 33dbbce1
      Rossen Stoyanchev 提交于
      This commit adds support for detecting the target WebHandler along with
      WebFilters, WebExceptionHandlers, and other spring-web reactive
      strategies in an ApplicationContext.
      
      WebReactiveConfigurationSupport has @Bean factory methods for
      DispatcherHandler and ResponseStatusExceptionHandler.
      
      WebHttpHandlerBuilder has a static factory method that initializes the
      builder from an ApplicationContext. This method is also used in the
      DispatcherHandler#toHttpHandler(ApplicationContext) shortcut method.
      
      Issue: SPR-14837
      33dbbce1
    • J
      Polishing · 45fc4495
      Juergen Hoeller 提交于
      45fc4495
    • J
      Upgrade to H2 1.4.193 and Derby 10.13.1.1 · eaf80781
      Juergen Hoeller 提交于
      eaf80781
  5. 31 10月, 2016 9 次提交
  6. 29 10月, 2016 8 次提交