本文主要是介绍ids for this class must be manually assigned before calling save():***错误说明,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这好行是第一次发hibernate的文章,
近日研究JSP中使用hibernate出现了 ids for this class must be manually assigned before calling save():***错误,分析及解决如下:
<id name="id" type="integer">
<column name="id" />
<generator class="assigned" />
</id>
这种搭配是矛盾的!
把主键的生成方式改为increment,它的特征是能够根据底层数据库自动选择主键生成方式。
这篇关于ids for this class must be manually assigned before calling save():***错误说明的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!