Hibernate not respecting MySQL auto_increment primary key field

前端 未结 5 2053
攒了一身酷
攒了一身酷 2020-12-15 18:56

I am trying to learn how Hibernate works, and I am running into an almost unacceptable learning curve. I can\'t see how to get Hibernate to respect the auto_increment policy

5条回答
  •  无人及你
    2020-12-15 19:15

    I wrote this in a comment under the accepted answer, but those aren't shown by default so I'll re-post it as an answer.

    I was using a hibernate.cfg.xml file off some dude's web site, and it had this:

    create
    

    This made the system to re-create my table each time I ran my app. Commenting it out solved the problem.

    The other two answers about the various ways to create IDs are correct. My original problem's symptom seemed to do with ID generation, but the actual cause was misconfiguration.

提交回复
热议问题