Package javax.persistence
Annotation Interface AttributeOverrides
Used to override mappings of multiple properties or fields.
Example: @Embedded @AttributeOverrides({ @AttributeOverride(name="startDate", column=@Column("EMP_START")), @AttributeOverride(name="endDate", column=@Column("EMP_END")) }) public EmploymentPeriod getEmploymentPeriod() { ... }
- Since:
- Java Persistence 1.0
- See Also:
-
Required Element Summary
Modifier and TypeRequired ElementDescription(Required) One or more field or property mapping overrides.
-
Element Details
-
value
AttributeOverride[] value(Required) One or more field or property mapping overrides.
-