hibernate 对象主键为string
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate 对象主键为string相关的知识,希望对你有一定的参考价值。
当对象映射表主键要求为varchar2类型时,hibernate主键生成策略就不能为native,因为sequence自动生成的值为int,会报
Unknown integral data type for ids : java.lang.String这个错误
可以使用uuid进行解决
当然也可以改变为assigned,然后在程序中调用sequence中的数据进行保存
最后,如果主键为整型,那么直接使用native配置sequence就可以了
以上是关于hibernate 对象主键为string的主要内容,如果未能解决你的问题,请参考以下文章