Class BlobColumnMapping

  • All Implemented Interfaces:
    ColumnMapping

    public class BlobColumnMapping
    extends AbstractLargeBinaryColumnMapping
    Mapping of a BLOB column. A BLOB column can be treated in two ways in terms of storage and retrieval.
    • Serialise the field into the BLOB using ObjectOutputStream, and deserialise it back using ObjectInputStream
    • Store the field using a byte[] stream, and retrieve it in the same way.