1. 07 4月, 2017 1 次提交
    • S
      Use Rouge syntax highlighting in PDF version of Reference Manual · 3a4b205b
      Sam Brannen 提交于
      This commit uses a tip provided by @mojavelinux to set the syntax
      highlighter to Rouge for the PDF version of the User Guide.
      
      Once Asciidoctor 1.5.7 has been released we will likely switch to Rouge
      for the HTML version of the Reference Manual as well.
      
      Issue: SPR-14997
      3a4b205b
  2. 06 4月, 2017 12 次提交
  3. 05 4月, 2017 10 次提交
  4. 04 4月, 2017 6 次提交
  5. 03 4月, 2017 6 次提交
  6. 02 4月, 2017 3 次提交
  7. 31 3月, 2017 2 次提交
    • S
      Resolve async model attributes in AbstractView · 73b44828
      Sebastien Deleuze 提交于
      This change allows the functional WebFlux API to support natively
      reactive types and also makes it possible for View implementations to
      disable async attributes resolution if they want for example take
      advantage of stream rendering.
      
      It also makes AbstractView#getModelAttributes() asynchronous.
      
      Issue: SPR-15368
      73b44828
    • R
      Add ResponseSpec to WebClient · 840d7abb
      Rossen Stoyanchev 提交于
      Replace the overloaded "retrieve" methods with a single retrieve() +
      ResponseSpec exposing shortcut methods (bodyToMono, bodyToFlux)
      mirroring the ClientResponse shortcuts it delegates to.
      
      Unlike exchange() however with retrieve() there is no access to other
      parts of ClientResponse so ResponseSpec exposes additional shortcuts
      for obtain ResponseEntity<T> or ResponseEntity<List<T>>.
      
      Issue: SPR-15294
      840d7abb