1. 10 3月, 2021 3 次提交
  2. 09 3月, 2021 14 次提交
  3. 05 3月, 2021 3 次提交
  4. 04 3月, 2021 4 次提交
  5. 03 3月, 2021 3 次提交
  6. 02 3月, 2021 8 次提交
    • A
      Support UTF-16/UTF-32 in Jackson message converter · b61643b7
      Arjen Poutsma 提交于
      This commit makes sure that we let Jackson deal with all the encodings
      that it supports, including UTF-16 and UTF-32.
      
      Closes gh-26627
      b61643b7
    • S
      Delete unnecessary @SuppressWarnings declaration · 7efb4ead
      Sam Brannen 提交于
      7efb4ead
    • S
      Delete unused method · e89cc993
      Sam Brannen 提交于
      e89cc993
    • S
      Fix typo in Javadoc · 010b7375
      Sam Brannen 提交于
      010b7375
    • S
      Polish contribution · 01c2e12f
      Sam Brannen 提交于
      See gh-26619
      01c2e12f
    • G
      Ensure local @CrossOrigin maxAge overrides global value · 90de1ab6
      GungnirLaevatain 提交于
      Prior to this commit, a method-level @CrossOrigin maxAge value did not
      override a class-level @CrossOrigin maxAge value. This contradicts the
      Javadoc for @CrossOrgin which states the following.
      
          For those attributes where only a single value can be accepted such
          as allowCredentials and maxAge, the local overrides the global
          value.
      
      This commit ensures that a method-level @CrossOrigin maxAge value
      overrides a class-level @CrossOrigin maxAge value.
      
      Closes gh-26619
      90de1ab6
    • B
      Allow ServerHttpRequest content-type mutation · 5a115697
      Brian Clozel 提交于
      Prior to this commit, `ServerHttpRequest.mutate()` would not reflect
      changes made on the "Accept" and "Content-Type" HTTP headers.
      This was due to the fact that the instantiation of a new request based
      on the mutated values would not use the writable HTTP headers used
      during the mutation, but rather a read-only view of the headers backed
      by `ReadOnlyHttpHeaders`.
      
      `ReadOnlyHttpHeaders` caches those values for performance reasons, so
      getting those from the new request would not reflect the changes made
      during the mutation phase.
      
      This commit ensures that the new request uses the mutated headers.
      
      Fixes gh-26615
      5a115697
    • O
      Fix @EventListener example in reference manual · 00875784
      Oleksandr Kravchuk 提交于
      Closes gh-26622
      00875784
  7. 01 3月, 2021 1 次提交
  8. 27 2月, 2021 4 次提交