Uses of Class
org.hibernate.type.SerializationException
Packages that use SerializationException
Package
Description
This package contains the interfaces that make up the bootstrap API
for Hibernate.
This package defines APIs for configuring Hibernate.
An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate
.Internal utility classes
-
Uses of SerializationException in org.hibernate.boot
Methods in org.hibernate.boot that throw SerializationExceptionModifier and TypeMethodDescriptionMetadataSources.addCacheableFileStrictly
(File file) INTENDED FOR TESTSUITE USE ONLY!MetadataSources.addCacheableFileStrictly
(File file, File cacheDir) INTENDED FOR TESTSUITE USE ONLY! -
Uses of SerializationException in org.hibernate.cfg
Methods in org.hibernate.cfg that throw SerializationExceptionModifier and TypeMethodDescriptionConfiguration.addCacheableFileStrictly
(File xmlFile) INTENDED FOR TESTSUITE USE ONLY! -
Uses of SerializationException in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type SerializationExceptionModifier and TypeMethodDescriptionvoid
CoreMessageLogger.unableToDeserializeCache
(String path, SerializationException error) -
Uses of SerializationException in org.hibernate.internal.util
Methods in org.hibernate.internal.util that throw SerializationExceptionModifier and TypeMethodDescriptionstatic Object
SerializationHelper.clone
(Serializable object) Deep clone an object using serialization.static Object
SerializationHelper.deserialize
(byte[] objectData) Deserializes an object from an array of bytes using the Thread Context ClassLoader (TCCL).static Object
SerializationHelper.deserialize
(byte[] objectData, ClassLoader loader) Deserializes an object from an array of bytes.static <T> T
SerializationHelper.deserialize
(InputStream inputStream) Deserializes an object from the given stream using the Thread Context ClassLoader (TCCL).static Object
SerializationHelper.deserialize
(InputStream inputStream, ClassLoader loader) Deserializes an object from the given stream using the Thread Context ClassLoader (TCCL).static <T> T
SerializationHelper.doDeserialize
(InputStream inputStream, ClassLoader loader, ClassLoader fallbackLoader1, ClassLoader fallbackLoader2) static byte[]
SerializationHelper.serialize
(Serializable obj) Serializes an object to a byte array for storage or externalization.static void
SerializationHelper.serialize
(Serializable obj, OutputStream outputStream) Serializes an object to the given stream.