HiLo generator strategy not working

后端 未结 7 491
伪装坚强ぢ
伪装坚强ぢ 2021-02-04 09:02

I am new to hibernate. What I am trying to do is use @CollectionIdto generate an identifier for my Address class. I have used Collection interface for

7条回答
  •  感情败类
    2021-02-04 09:32

    Hilo is not supported anymore, this should work

    @GenericGenerator(name="sequence-gen",strategy="sequence")
    

提交回复
热议问题