org.springframework.core.serializer
Class DefaultSerializer
- java.lang.Object
-
- org.springframework.core.serializer.DefaultSerializer
-
- All Implemented Interfaces:
- Serializer< Object>
public class DefaultSerializer extends Object implements Serializer<Object>
Serializer that writes an object to an output stream using Java Serialization.- Since:
- 3.0.5
- Author:
- Gary Russell, Mark Fisher
-
Constructor Summary
Constructors Constructor and Description DefaultSerializer()
Method Summary
Methods Modifier and Type Method and Description void
serialize(Object object, OutputStream outputStream)
Writes the source object to an output stream using Java Serialization.
-
Method Detail
serialize
public void serialize(Object object, OutputStream outputStream) throws IOException
Writes the source object to an output stream using Java Serialization. The source object must implementSerializable
.- Specified by:
-
serialize
in interfaceSerializer<Object>
- Parameters:
-
object
- the object to serialize -
outputStream
- the output stream - Throws:
-
IOException
- in case of errors writing to the stream