Make sure you use a GeneratedValue annotation in your model.
I.e.
| @Id
| @Column(name = "id", unique = true, nullable = false)
| @GeneratedValue(strategy = GenerationType.IDENTITY)
| @NotNull
| public long getId() {
| return this.id;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4097555#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...