I'm using a similar approach:
| @Id
| @GeneratedValue(generator="system-uuid")
| @GenericGenerator(name="system-uuid", strategy = "uuid")
| @Column(name = "id", unique = true, nullable = false, insertable = true,
updatable = true, length = 32)
| public String getId() {
| return this.id;
| }
|
and it ain't working either. Any clue?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962392#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...