Expose protected method in AbstractJackson2HttpMessageConverter
Closes gh-25509
This commit is contained in:
parent
b1d84067cd
commit
b6ff12d2f5
|
@ -285,7 +285,15 @@ public abstract class AbstractJackson2HttpMessageConverter extends AbstractGener
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Charset getCharset(@Nullable MediaType contentType) {
|
/**
|
||||||
|
* Return the charset to use for JSON input.
|
||||||
|
* <p>By default this is either the charset from the input {@code MediaType}
|
||||||
|
* or otherwise falling back on {@code UTF-8}.
|
||||||
|
* @param contentType the content type of the HTTP input message
|
||||||
|
* @return the charset to use
|
||||||
|
* @since 5.1.18
|
||||||
|
*/
|
||||||
|
protected static Charset getCharset(@Nullable MediaType contentType) {
|
||||||
if (contentType != null && contentType.getCharset() != null) {
|
if (contentType != null && contentType.getCharset() != null) {
|
||||||
return contentType.getCharset();
|
return contentType.getCharset();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue