Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
EclipseLink/UserGuide/JPA/Basic JPA Development/Mapping/Basic Mappings/Default Conversions and Converters/StructConverter
EclipseLink | |
Website | |
Download | |
Community | |
Mailing List • Forums • IRC • mattermost | |
Issues | |
Open • Help Wanted • Bug Day | |
Contribute | |
Browse Source |
Key API
@StructConverter
@StructConverter is an EclipseLink-specific annotation. You can add it to an org.eclipse.persistence.platform.database.DatabasePlatform using its addStructConverter method to enable custom processing of java.sql.Struct types.
@Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface StructConverter { String name(); String converter(); }
Attribute | Description | Default | Required? |
---|---|---|---|
name | The String name for your converter. Ensure that this name is unique across the persistence unit. | Yes | |
converter | The converter class as a String. This class must implement the EclipseLink org.eclipse.persistence.mappings.converters.Converter interface. | Yes |
The following example shows how to define the @StructConverter.
Example: @StructConverter Annotation
@StructConverter(name="MyType", converter="myproject.converters.MyStructConverter")
You can specify the @StructConverter annotation anywhere in an Entity with the scope being the whole session.
EclipseLink will throw an exception if you add more than one StructConverter that affects the same Java type.
A @StructConverter exists in the same namespaces as @Converter. EclipseLink will throw a validation exception if you add a Converter and a StructConverter of the same name.
Note: You can also configure structure converters in a sessions.xml file.
Using Structure Converters to Configure Mappings
In EclipseLink, a DatabasePlatform holds a structure converter. An org.eclipse.persistence.database.platform.converters.StructConverter affects all objects of a particular type read into the Session that has that DatabasePlatform. This prevents you from configuring the StructConverter on a mapping-by-mapping basis. To configure mappings that use the StructConverter, you call their setFieldType(java.sql.Types.STRUCT) method. You must call this method on all mappings that the StructConverter will affect – if you do not call it, errors might occur.
The JPA specification requires all @Basic mappings that map to a non-primitive or a non-primitive-wrapper type have a serialized converter added to them. This enables certain STRUCT types to map to a field without serialization.
You can use the existing @Convert annotation with its value attribute set to the StructConverter name – in this case, EclipseLink will apply appropriate settings to the mapping. This setting will be required on all mappings that use a type for which a StructConverter has been defined. Failing to configure the mapping with the @Convert will cause an error.