Annotation Type SerializedObject
-
@Target(TYPE) @Retention(RUNTIME) public @interface SerializedObject
SerializedObject annotation is used to set an org.eclipse.persistence.descriptors.SerializedObjectPolicy on an Entity or MappedSuperClass. If SerializedObjectPolicy is specified Eclipselink writes out the whole entity object with its privately owned (and nested privately owned) entities and element collections into an additional (likely BLOB) field in the database. That field could be specified in the annotation, it defaults to "SOP" in the main table.Examples:
@Entity @SerializedObject(MySerializedObjectPolicy.class); public class Employee {...
If SerializedObjectPolicy is set on an entity then SerializedObjectPolicies with the same field are set on all inheriting entities. The query that uses SerializedObjectPolicy extracts the whole object from that field. To read object(s) using SerializedObjectPolicy the query should specify@Entity @SerializedObject(value = MySerializedObjectPolicy.class, column = @Column(name="SERIALIZED")); public class Address {...
- See Also:
Examples: Query query = em.createQuery("SELECT e FROM Employee e").setHint(QueryHints.SERIALIZED_OBJECT, "true"); Map hints = new HashMap(); hints.put("eclipselink.serialized-object", "true"); Address address = em.find(Address.class, id, hints); The goal is to make reads from the database faster. The draw back is slower writes into the database. So SerializedObjectPolicy may make sense for read-only / read-mostly application for Entity, which always loads all its dependent entities and / or ElementCollections. In case the serialized object column contains null or obsolete version of the object the query using SerializedObjectPolicy would either throw exception or - if all other fields have been read, too - would build the object using these fields (exactly as in case SerializedObjectPolicy is not used). Note that currently no default implementation of SerializedObjectPolicy is available and this class should be provided by the user.
,SerializedObjectPolicy
- Author:
- ailitche
- Since:
- EclipseLink 2.5.1
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.Class
value
The Class that implements org.eclipse.persistence.descriptors.SerializedObjectPolicy interface.
-
-
-
-
column
Column column
(Optional) The column that holds the serialized object. By default it's a BLOB column named "SOP" in entity's main table.- Default:
- @javax.persistence.Column(name="SOP")
-
-