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
Method Summary |
void |
serialize(Object object,
OutputStream outputStream)
Writes the source object to an output stream using Java Serialization. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DefaultSerializer
public DefaultSerializer()
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 implement
Serializable
.
- Specified by:
serialize
in interface Serializer<Object>
- Parameters:
object
- the object to serializeoutputStream
- the output stream
- Throws:
IOException
- in case of errors writing to the stream