Uses of Class
org.hibernate.type.SerializationException
-
Packages that use SerializationException Package Description org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.cfg org.hibernate.internal org.hibernate.internal.util Internal utility classes -
-
Uses of SerializationException in org.hibernate.boot
Methods in org.hibernate.boot that throw SerializationException Modifier and Type Method Description MetadataSources
MetadataSources. addCacheableFileStrictly(File file)
INTENDED FOR TESTSUITE USE ONLY!MetadataSources
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 SerializationException Modifier and Type Method Description Configuration
Configuration. addCacheableFileStrictly(File xmlFile)
INTENDED FOR TESTSUITE USE ONLY! -
Uses of SerializationException in org.hibernate.internal
Methods in org.hibernate.internal with parameters of type SerializationException Modifier and Type Method Description void
CoreMessageLogger. unableToDeserializeCache(String path, SerializationException error)
-
Uses of SerializationException in org.hibernate.internal.util
Methods in org.hibernate.internal.util that throw SerializationException Modifier and Type Method Description static Object
SerializationHelper. clone(Serializable object)
Deep clone anObject
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 specified stream using the Thread Context ClassLoader (TCCL).static Object
SerializationHelper. deserialize(InputStream inputStream, ClassLoader loader)
Deserializes an object from the specified 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 anObject
to a byte array for storage/serialization.static void
SerializationHelper. serialize(Serializable obj, OutputStream outputStream)
Serializes anObject
to the specified stream.
-