Merge branch '5.3.x'

This commit is contained in:
Sam Brannen
2022-09-14 17:18:00 +02:00
28 changed files with 40 additions and 62 deletions

View File

@@ -31,7 +31,7 @@ import org.springframework.util.Assert;
/**
* Implementation of {@link org.springframework.http.converter.HttpMessageConverter}
* that can read and write JSON using the
* <a href="http://json-b.net/">JSON Binding API</a>.
* <a href="https://javaee.github.io/jsonb-spec/">JSON Binding API</a>.
*
* <p>This converter can be used to bind to typed beans or untyped {@code HashMap}s.
* By default, it supports {@code application/json} and {@code application/*+json} with

View File

@@ -21,7 +21,7 @@ package org.springframework.web.util;
* Escapes based on the JavaScript 1.5 recommendation.
*
* <p>Reference:
* <a href="https://developer.mozilla.org/en-US/docs/JavaScript/Guide/Values,_variables,_and_literals#String_literals">
* <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Grammar_and_types#string_literals">
* JavaScript Guide</a> on Mozilla Developer Network.
*
* @author Juergen Hoeller