Uses of Class
org.springframework.kafka.support.serializer.JsonSerde

Packages that use JsonSerde
Package
Description
Provides classes related to Kafka serialization.
  • Uses of JsonSerde in org.springframework.kafka.support.serializer

    Modifier and Type
    Method
    Description
    <X> JsonSerde<X>
    JsonSerde.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 serde with same configuration, except new target type reference is used.
    <X> JsonSerde<X>
    JsonSerde.copyWithType(com.fasterxml.jackson.databind.JavaType newTargetType)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Copies this serde with same configuration, except new target java type is used.
    <X> JsonSerde<X>
    JsonSerde.copyWithType(Class<? super X> newTargetType)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Copies this serde with same configuration, except new target type is used.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Don't remove type information headers after deserialization.
    JsonSerde.forKeys()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Designate this Serde for serializing/deserializing keys (default is values).
    JsonSerde.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.
    JsonSerde.noTypeInfo()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Configure the serializer to not add type information.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Use the supplied Jackson2JavaTypeMapper.