| Package | Description |
|---|---|
| org.springframework.core.serializer |
Root package for Spring's serializer interfaces and implementations.
|
| org.springframework.core.serializer.support |
Support classes for Spring's serializer abstraction.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultSerializer
A
Serializer implementation that writes an object to an output stream
using Java serialization. |
| Modifier and Type | Class and Description |
|---|---|
class |
SerializationDelegate
A convenient delegate with pre-arranged configuration state for common
serialization needs.
|
| Constructor and Description |
|---|
SerializationDelegate(Serializer<Object> serializer,
Deserializer<Object> deserializer)
Create a
SerializationDelegate with the given serializer/deserializer. |
SerializingConverter(Serializer<Object> serializer)
Create a
SerializingConverter that delegates to the provided Serializer. |