Skip to content

Instantly share code, notes, and snippets.

@stliu
Created June 30, 2011 13:16
Show Gist options
  • Save stliu/1056208 to your computer and use it in GitHub Desktop.
Save stliu/1056208 to your computer and use it in GitHub Desktop.
@Entity
//@Access( AccessType.FIELD )
class User {
private String name;
@EmbeddedId
private Address address;
private int version;
@Version
public int getVersion(){}
}
@Embeddable
class Address {
String street;
String city;
String postCode;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment