Is it possible to bypass @GeneratedValue for an ID in Hibernate, we have a case where, most of the time we want the ID to be set using GeneratedValue, but in certain cases would like to set the ID manually.
Is this possible to do?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I know you can do this in the JPA spec, so you should be able to in Hibernate (using JPA+ annotations).
If you just fill in the ID field of the new persistent model you’re creating, then when you ‘Merge’ that model into the EntityManager, it will use the ID you’ve set.
This does have ramifications, though. You’ve just used up that ID, but the sequence specified by the GeneratedValue annotation doesn’t know that. Unless you’re specifying an ununsed ID that’s LESS than the current sequence value, you’re going to get a problem once the sequence catches up to the value you just used.
So, maybe I can see where you might want the user to be able to specify an ID, but then you need to catch the possible Exception (duplicate ID) that may come in the future.