Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-users] Hibernate ID Migration

hi there

I try to migrate my opensource project, called cimande. http://www.sf.net/projects/cimande, located in /branch/cimande-jpa

i have problem with this, and is there a syntax for this syntax replacement

    /**
     * @return Returns the id.
     * @hibernate.id generator-class="uuid.hex" length="28" unsaved-value="0"
     */
    @Id() @GeneratedValue(generator="system-uuid")
    @GenericGenerator(name="system-uuid", strategy = "uuid")
    public String getId() {
        return id;
    }


the source is from org.blueoxygen.cimande.DefaultPersistance

F

Back to the top