spring-framework / org.springframework.core.serializer.support

Package org.springframework.core.serializer.support

Types

DeserializingConverter

open class DeserializingConverter : Converter<ByteArray, Any>

A Converter that delegates to a org.springframework.core.serializer.Deserializer to convert data in a byte array to an object.

SerializationDelegate

open class SerializationDelegate : Serializer<Any>, Deserializer<Any>

A convenient delegate with pre-arranged configuration state for common serialization needs. Implements Serializer and Deserializer itself, so can also be passed into such more specific callback methods.

SerializingConverter

open class SerializingConverter : Converter<Any, ByteArray>

A Converter that delegates to a org.springframework.core.serializer.Serializer to convert an object to a byte array.

Exceptions

SerializationFailedException

open class SerializationFailedException : NestedRuntimeException

Wrapper for the native IOException (or similar) when a org.springframework.core.serializer.Serializer or org.springframework.core.serializer.Deserializer failed. Thrown by SerializingConverter and DeserializingConverter.