类 Hints
java.lang.Object
cn.taketoday.core.codec.Hints
Constants and convenience methods for working with hints.
- 从以下版本开始:
- 4.0
- 作者:
- Rossen Stoyanchev
- 另请参阅:
-
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明Create a map wit a single hint viaCollections.singletonMap(K, V).static StringgetLogPrefix(Map<String, Object> hints) Obtain the hintLOG_PREFIX_HINT, if present, or an empty String.static <T> TgetRequiredHint(Map<String, Object> hints, String hintName) Obtain the value for a required hint.static booleanisLoggingSuppressed(Map<String, Object> hints) Whether to suppress logging based on the hintSUPPRESS_LOGGING_HINT.Merge a single hint into a map of hints, possibly creating and copying all hints into a new map, or otherwise if the map of hints is empty, creating a new single entry map.Merge two maps of hints, creating and copying into a new map if both have values, or returning the non-empty map, or an empty map if both are empty.none()Return an empty map of hints viaCollections.emptyMap().static voidtouchDataBuffer(DataBuffer buffer, Map<String, Object> hints, Logger logger) If the hints contain aLOG_PREFIX_HINTand the given logger has DEBUG level enabled, apply the log prefix as a hint to the given buffer viaDataBufferUtils.touch(DataBuffer, Object).
-
字段详细资料
-
LOG_PREFIX_HINT
Name of hint exposing a prefix to use for correlating log messages. -
SUPPRESS_LOGGING_HINT
Name of boolean hint whether to avoid logging data either because it's potentially sensitive, or because it has been logged by a composite encoder, e.g. for multipart requests.
-
-
构造器详细资料
-
Hints
public Hints()
-
-
方法详细资料
-
from
Create a map wit a single hint viaCollections.singletonMap(K, V).- 参数:
hintName- the hint namevalue- the hint value- 返回:
- the created map
-
none
Return an empty map of hints viaCollections.emptyMap().- 返回:
- the empty map
-
getRequiredHint
Obtain the value for a required hint.- 类型参数:
T- the hint type to cast to- 参数:
hints- the hints maphintName- the required hint name- 返回:
- the hint value
- 抛出:
IllegalArgumentException- if the hint is not found
-
getLogPrefix
Obtain the hintLOG_PREFIX_HINT, if present, or an empty String.- 参数:
hints- the hints passed to the encode method- 返回:
- the log prefix
-
isLoggingSuppressed
Whether to suppress logging based on the hintSUPPRESS_LOGGING_HINT.- 参数:
hints- the hints map- 返回:
- whether logging of data is allowed
-
merge
public static Map<String,Object> merge(@Nullable Map<String, Object> hints1, @Nullable Map<String, Object> hints2) Merge two maps of hints, creating and copying into a new map if both have values, or returning the non-empty map, or an empty map if both are empty.- 参数:
hints1- 1st map of hintshints2- 2nd map of hints- 返回:
- a single map with hints from both
-
merge
public static Map<String,Object> merge(@Nullable Map<String, Object> hints, String hintName, Object hintValue) Merge a single hint into a map of hints, possibly creating and copying all hints into a new map, or otherwise if the map of hints is empty, creating a new single entry map.- 参数:
hints- a map of hints to be mergedhintName- the hint name to mergehintValue- the hint value to merge- 返回:
- a single map with all hints
-
touchDataBuffer
public static void touchDataBuffer(DataBuffer buffer, @Nullable Map<String, Object> hints, Logger logger) If the hints contain aLOG_PREFIX_HINTand the given logger has DEBUG level enabled, apply the log prefix as a hint to the given buffer viaDataBufferUtils.touch(DataBuffer, Object).- 参数:
buffer- the buffer to touchhints- the hints map to check for a log prefixlogger- the logger whose level to check
-