我正在使用 Hibernate 3.6.9final 和 Glassfish 3.1.1。
当我启动我的应用程序时,我收到以下警告:“Hibernate 不支持SequenceGenerator.initialValue()
除非hibernate.id.new_generator_mappings
”。
根据文档,我可以通过启用/禁用该hibernate.id.new_generator_mappings
值来打开/关闭对新序列生成器的支持。在我persistence.xml
的属性中,我设置了以下选项:
<property name="hibernate.id.new_generator_mappings" value="true"/>
这似乎被完全忽略了,我仍然收到警告。这是不能在persistence.xml 中设置的设置吗?我没有在应用程序中使用 AnnotationConfiguration,也没有 ahibernate.cfg.xml
或hbm.xml
.
建议?