The one of the problem may be with the Entity classes if you are dealing with MongoDB. Please check if you have @Indexed(unique=true)
on your Id. If you did this please remove it and problem would be solved. This is because the _id is already unique for each document in the db.
Thankyou.