Uses of Interface
org.springframework.core.serializer.Deserializer
Packages that use Deserializer
Package
Description
Root package for Spring's serializer interfaces and implementations.
Support classes for Spring's serializer abstraction.
-
Uses of Deserializer in org.springframework.core.serializer
Classes in org.springframework.core.serializer that implement DeserializerModifier and TypeClassDescriptionclassA defaultDeserializerimplementation that reads an input stream using Java serialization. -
Uses of Deserializer in org.springframework.core.serializer.support
Classes in org.springframework.core.serializer.support that implement DeserializerModifier and TypeClassDescriptionclassA convenient delegate with pre-arranged configuration state for common serialization needs.Constructors in org.springframework.core.serializer.support with parameters of type DeserializerModifierConstructorDescriptionDeserializingConverter(Deserializer<Object> deserializer) Create aDeserializingConverterthat delegates to the providedDeserializer.SerializationDelegate(Serializer<Object> serializer, Deserializer<Object> deserializer) Create aSerializationDelegatewith the given serializer/deserializer.