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/UuidGenerator"

(New page: {{EclipseLink_UserGuide |info=y |toc=n |eclipselink=y |eclipselinktype=JPA |api=y |apis= *[http://www.eclipse.org/eclipselink/api/latest/javax/persistence/GeneratedValue.html @GeneratedVal...)
 
(@UuidGenerator)
Line 10: Line 10:
 
}}
 
}}
 
=@UuidGenerator=
 
=@UuidGenerator=
You can use the <code>@UuidGenerator</code> to generate an object's Id based on a Universally Unique IDentifier (UUID).  A UUID is a globally unique id.  A UUID does not require database access, so is efficient to generate, but is a large value, so requires more storage than a numeric id.  A UUID can be stored as a <tt>String</tt> (32 bytes) or a <tt>byte[]</tt> (16 bytes).  UUIDs are useful in distributed architectures as they do not require a single id generator node.
+
You can use the <code>@UuidGenerator</code> to generate an object's Id based on a Universally Unique IDentifier (UUID).  A UUID is a globally unique id.  A UUID does not require database access, so is efficient to generate, but is a large value, so requires more storage than a numeric id.  A UUID can be stored as a <tt>String</tt> (32 bytes) or a <tt>byte[]</tt> (16 bytes).  UUIDs are useful in distributed architectures as they do not require a single generation point.
  
 
{{EclipseLink_AttributeTable
 
{{EclipseLink_AttributeTable

Revision as of 11:43, 28 June 2012

EclipseLink JPA

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

@UuidGenerator

You can use the @UuidGenerator to generate an object's Id based on a Universally Unique IDentifier (UUID). A UUID is a globally unique id. A UUID does not require database access, so is efficient to generate, but is a large value, so requires more storage than a numeric id. A UUID can be stored as a String (32 bytes) or a byte[] (16 bytes). UUIDs are useful in distributed architectures as they do not require a single generation point.

@UuidGeneratorAttributes
Attribute Description Default Required?
name The name of the generator must match the name of a GeneratedValue. Yes


The following example shows how to use this annotation to specify the allocation size for the SEQUENCE primary key generator named Emp_Seq.

Example: @UuidGenerator
 @Entity
 public class Employee implements Serializable {
     ...
     @Id
     @UuidGenerator(name="UUID")
     @GeneratorValue(generator="UUID")
     @Column(name="EMP_ID")
     public String getId() {
         return id;
     }
     ...
 }
Example: Using <sequence-generator>
<entity class="Employee">
    <attributes>
        <id name="id">
            <column name="EMP_ID"/>
            <generated-value generator="UUID"/>
            <uuid-generator name="UUID"/>
        </id>
        ...
    </attributes>
</entity>


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

Copyright © Eclipse Foundation, Inc. All Rights Reserved.