Look at your database table description (in MySQL use command "desc TABLE_NAME") and see if its "id" column is "auto_increment"?
If not, modify (alter) your table and make id column auto_increment.
Then in your entity add this annotation to id property:
@GeneratedValue(strategy=GenerationType.AUTO)