Uses of Class
org.springframework.data.redis.serializer.SerializationException

Packages that use SerializationException
Package
Description
Serialization/Deserialization package for converting Object to (and from) binary data.
  • Uses of SerializationException in org.springframework.data.redis.serializer

    Modifier and Type
    Method
    Description
    @Nullable Object
    GenericJackson2JsonRedisSerializer.deserialize(byte @Nullable [] source)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    <T> @Nullable T
    GenericJackson2JsonRedisSerializer.deserialize(byte @Nullable [] source, Class<T> type)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deserialized the array of bytes containing JSON as an Object of the given, required type.
    @Nullable Object
    GenericJackson3JsonRedisSerializer.deserialize(byte @Nullable [] source)
     
    <T> @Nullable T
    GenericJackson3JsonRedisSerializer.deserialize(byte @Nullable [] source, Class<T> type)
    Deserialized the array of bytes containing JSON as an Object of the given, required type.
    @Nullable T
    Jackson2JsonRedisSerializer.deserialize(byte @Nullable [] bytes)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    @Nullable T
    Jackson3JsonRedisSerializer.deserialize(byte @Nullable [] bytes)
     
    @Nullable Object
    OxmSerializer.deserialize(byte @Nullable [] bytes)
     
    @Nullable T
    RedisSerializer.deserialize(byte @Nullable [] bytes)
    Deserialize an object from the given binary data.
    byte[]
    GenericJackson2JsonRedisSerializer.serialize(@Nullable Object value)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    byte[]
    GenericJackson3JsonRedisSerializer.serialize(@Nullable Object value)
     
    byte[]
    Jackson2JsonRedisSerializer.serialize(@Nullable T value)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    byte[]
    Jackson3JsonRedisSerializer.serialize(@Nullable T value)
     
    byte[]
    OxmSerializer.serialize(@Nullable Object value)
     
    byte[]
    RedisSerializer.serialize(@Nullable T value)
    Serialize the given object to binary data.