Uses of Class
org.springframework.kafka.support.serializer.JacksonJsonSerde
Packages that use JacksonJsonSerde
Package
Description
Provides classes related to Kafka serialization.
-
Uses of JacksonJsonSerde in org.springframework.kafka.support.serializer
Methods in org.springframework.kafka.support.serializer that return JacksonJsonSerdeModifier and TypeMethodDescription<X> JacksonJsonSerde<X> JacksonJsonSerde.copyWithType(Class<? super X> newTargetType) Copies this serde with same configuration, except new target type is used.<X> JacksonJsonSerde<X> JacksonJsonSerde.copyWithType(tools.jackson.core.type.TypeReference<? super X> newTargetType) Copies this serde with same configuration, except new target type reference is used.<X> JacksonJsonSerde<X> JacksonJsonSerde.copyWithType(tools.jackson.databind.JavaType newTargetType) Copies this serde with same configuration, except new target java type is used.JacksonJsonSerde.dontRemoveTypeHeaders()Don't remove type information headers after deserialization.JacksonJsonSerde.forKeys()Designate this Serde for serializing/deserializing keys (default is values).JacksonJsonSerde.ignoreTypeHeaders()Ignore type information headers and use the configured target class.JacksonJsonSerde.noTypeInfo()Configure the serializer to not add type information.JacksonJsonSerde.typeMapper(JacksonJavaTypeMapper mapper) Use the suppliedJacksonJavaTypeMapper.