Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/UserGuide/JPA/Basic JPA Development/Entities/Ids/Id"

(@Id)
Line 29: Line 29:
  
 
If the <code>Id</code> (or part of the Id) is also a foreign key from a reference to another entity, the <tt>@Id</tt> annotation should be placed on the <tt>@OneToOne</tt> or <tt>@ManyToOne</tt> attribute.  The entity's <code>Id</code> is then composed of the <code>Id</code> of the referenced entity.
 
If the <code>Id</code> (or part of the Id) is also a foreign key from a reference to another entity, the <tt>@Id</tt> annotation should be placed on the <tt>@OneToOne</tt> or <tt>@ManyToOne</tt> attribute.  The entity's <code>Id</code> is then composed of the <code>Id</code> of the referenced entity.
 +
 +
{{EclipseLink_Note
 +
|note=The id of a persistent object instance must never be changed and cannot be updated.
 +
}}
  
 
This example shows how to use this annotation to designate the persistent field <tt>empID</tt> as the primary key of the <tt>Employee</tt> table.
 
This example shows how to use this annotation to designate the persistent field <tt>empID</tt> as the primary key of the <tt>Employee</tt> table.

Revision as of 13:59, 14 June 2011

EclipseLink JPA

Eclipselink-logo.gif
EclipseLink
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

@Id

Use the @Id annotation or <id> XML element to designate one or more persistent fields or properties as the entity's primary key.

For each entity, you must designate at least one of the following:

Elug note icon.png

Note: The @Id and @IdClass combination – is only applicable to composite primary key configuration.


The @Id annotation does not have attributes.

By default, the entities Id must be set by the application, normally before the persist is called. A @GeneratedValue can be used to have EclipseLink generate the Id value.

If the Id (or part of the Id) is also a foreign key from a reference to another entity, the @Id annotation should be placed on the @OneToOne or @ManyToOne attribute. The entity's Id is then composed of the Id of the referenced entity.

Elug note icon.png

Note: The id of a persistent object instance must never be changed and cannot be updated.

This example shows how to use this annotation to designate the persistent field empID as the primary key of the Employee table.

Example: @Id Annotation
@Entity
public class Employee implements Serializable {
    @Id
    private int empID;
    ...
}

Example: Id XML
<entity class="Employee">
    <attributes>
        <id name="empID"/>
        ...
    </attributes>
</entity>
Elug javaspec icon.gif

For more information, see Section 11.1.18 "Id Annotation" in the JPA Specification.

The @Id annotation supports the use of EclipseLink converters. See Using EclipseLink JPA Converters.

It is possible to generate the value for an Id using the prePersist event, or through triggers when using the Oracle database platform. See Returning.

Allowing Zero Value Primary Keys

By default, EclipseLink interprets zero as null for primitive types that cannot be null (such as int and long) causing zero to be an invalid value for primary keys. You can modify this setting by using the eclipselink.id-validation property in the persistence.xml file. Valid values are:

  • NULL – EclipseLink interprets zero values as zero. This permits primary keys to use a value of zero.
  • ZERO (default) – EclipseLink interprets zero as null.
  • NEGATIVE – EclipseLink interprets negative values as null.
  • NONE – EclipseLink does not validate the id value.

You can also use the @PrimaryKey annotation to configure the id validation for a specific entity.


Eclipselink-logo.gif
Version: 2.2.0 DRAFT
Other versions...

Back to the top