Hi.
I try to generate a uuid Id by using the following code:
@Id
@GeneratedValue
@TableGenerator(name="uuid")
public Long getUid() {
return uid;
}
`uid` bigint(20) NOT NULL auto_increment,
@GeneratedValue(strategy=GenerationType.TABLE, generator="uuid")