Uses of Class
org.springframework.kafka.support.serializer.JsonDeserializer
Packages that use JsonDeserializer
Package
Description
Provides classes related to Kafka serialization.
-
Uses of JsonDeserializer in org.springframework.kafka.support.serializer
Methods in org.springframework.kafka.support.serializer that return JsonDeserializerModifier and TypeMethodDescription<X> JsonDeserializer
<X> JsonDeserializer.copyWithType
(com.fasterxml.jackson.core.type.TypeReference<? super X> newTargetType) Deprecated, for removal: This API element is subject to removal in a future version.Copies this deserializer with same configuration, except new target type reference is used.<X> JsonDeserializer
<X> JsonDeserializer.copyWithType
(com.fasterxml.jackson.databind.JavaType newTargetType) Deprecated, for removal: This API element is subject to removal in a future version.Copies this deserializer with same configuration, except new target java type is used.<X> JsonDeserializer
<X> JsonDeserializer.copyWithType
(Class<? super X> newTargetType) Deprecated, for removal: This API element is subject to removal in a future version.Copies this deserializer with same configuration, except new target type is used.JsonSerde.deserializer()
Deprecated, for removal: This API element is subject to removal in a future version.JsonDeserializer.dontRemoveTypeHeaders()
Deprecated, for removal: This API element is subject to removal in a future version.Don't remove type information headers.JsonDeserializer.forKeys()
Deprecated, for removal: This API element is subject to removal in a future version.Designate this deserializer for deserializing keys (default is values); only applies if the default type mapper is used.JsonDeserializer.ignoreTypeHeaders()
Deprecated, for removal: This API element is subject to removal in a future version.Ignore type information headers and use the configured target class.JsonDeserializer.trustedPackages
(String... packages) Deprecated, for removal: This API element is subject to removal in a future version.Add trusted packages to the default type mapper.JsonDeserializer.typeFunction
(BiFunction<byte[], org.apache.kafka.common.header.Headers, com.fasterxml.jackson.databind.JavaType> typeFunction) Deprecated, for removal: This API element is subject to removal in a future version.Set aBiFunction
that receives the data to be deserialized and the headers and returns a JavaType.JsonDeserializer.typeMapper
(Jackson2JavaTypeMapper mapper) Deprecated, for removal: This API element is subject to removal in a future version.Use the suppliedJackson2JavaTypeMapper
.JsonDeserializer.typeResolver
(JsonTypeResolver resolver) Deprecated, for removal: This API element is subject to removal in a future version.Set aJsonTypeResolver
that receives the data to be deserialized and the headers and returns a JavaType.Constructors in org.springframework.kafka.support.serializer with parameters of type JsonDeserializerModifierConstructorDescriptionJsonSerde
(JsonSerializer<T> jsonSerializer, JsonDeserializer<T> jsonDeserializer) Deprecated, for removal: This API element is subject to removal in a future version.