1. 08 2月, 2019 8 次提交
  2. 07 2月, 2019 6 次提交
  3. 05 2月, 2019 10 次提交
  4. 04 2月, 2019 6 次提交
  5. 26 1月, 2019 1 次提交
  6. 25 1月, 2019 2 次提交
  7. 24 1月, 2019 3 次提交
  8. 23 1月, 2019 1 次提交
  9. 22 1月, 2019 3 次提交
    • R
      Correct issus in Spring MVC section · 810b6154
      Rossen Stoyanchev 提交于
      Fixes #22282
      810b6154
    • R
      Typo in webmvc.adoc · 51f9e0aa
      Rossen Stoyanchev 提交于
      51f9e0aa
    • B
      Wrap DecodingException in DefaultServerRequest · d6aa589c
      Brian Clozel 提交于
      Prior to this commit, Spring WebFlux function would let
      `DecodingException` thrown by codecs bubble up to the web handler level.
      Since this exception is not handled by default there, the response would
      be turned into a HTTP 500 status.
      
      In the annotation model, `ArgumentResolver` implementations wrap this
      exception with a `ServerWebInputException`, which itself extends
      `ResponseStatusException`. The latter is supported by the error handling
      infrastructure as a HTTP 400 response.
      
      This commit ensures that `DecodingException` instances are properly
      wrapped in `ServerWebInputException` at the `ServerRequest` level
      directly, thus supporting all setup modes ("standalone" and through the
      `DispatcherHandler`).
      
      Fixes #22290
      d6aa589c