Java Persistence API (JPA) Extensions Reference for EclipseLink, Release 2.5
  Go To Table Of Contents
 Search
 PDFComments
Comments


@StructConverters

Use @StructConverters to define multiple @StructConverter annotations.


Annotation Elements

Table 2-66 describes this annotation's elements.

Table 2-66 @StructConverters Annotation Elements

Annotation Element Description Default

StructConverter[]

(Required) An array of struct converter




Examples

Example 2-106 shows how to use the @StructConverters annotation to define multiple @StructConverter elements.

Example 2-106 Using @StructConverters Annotation

@StructConverters{{
  @StructConverter(name="StructConverter1", converter="foo.StructConverter1"),
  @StructConverter(name="StructConverter2", converter="foo.StructConverter2")
  })

Example 2-107 shows how to use the <struct-converters> element in the eclipselink-orm.xml file.

Example 2-107 Using <struct-converters> XML

<struct-converters>
  <struct-converter name="StructConverter1" converter="foo.StructConverter1"/>
  <struct-converter name="StructConverter2" converter="foo.StructConverter2"/>
</struct-converters>


See Also

For more information, see: