我们正在尝试从Hibernate 3.6.7升级到4.1.2,将Hibernate Tools 3.2.0升级到3.5.0
我们使用Ant:
生成数据库创建脚本 <hibernatetool destdir="${target}">
<jpaconfiguration persistenceunit="stdcmpOrderPersistenceUnit" propertyfile="@{propertyfile}"/>
<classpath refid="@{classpathid}"/>
<!-- the file name is relative to $destdir -->
<hbm2ddl outputfilename="@{output}" format="true" export="false" drop="false"/>
</hibernatetool>
我们的持久单元如下所示:
<persistence-unit name="stdcmpOrderPersistenceUnit" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>jdbc/lakshmi_stdcmp</jta-data-source>
<mapping-file>META-INF/stdcmpOrderNamedQueries.xml</mapping-file>
<class>ch.ethz.id.wai.lakshmi.stdcmp.persistency.PersistentOrder</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="hibernate.show_sql" value="false"/>
<property name="hibernate.format_sql" value="false"/>
</properties>
</persistence-unit>
升级后,我们收到以下错误:
[hibernatetool] org.hibernate.service.jndi.JndiException: Error parsing JNDI name [jdbc/lakshmi_stdcmp]
[hibernatetool] javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
为什么Hibernate会尝试解析JNDI名称,因为PersistenceUnit上的所有信息都可用? 我们对旧版本没有任何问题。
在任何情况下,我们如何指定NamingFactory? (以及哪一个?)
答案 0 :(得分:55)
我遇到了类似的问题,特别是导致“解析JNDI名称时出错”, 只需从session-factory标记中删除空名称属性即可轻松修复。
我的hibernate.cfg.xml有
<session-factory name="">
这是自动生成的,所以我刚刚删除了name
attrib。
此修复程序位于此处:https://forum.hibernate.org/viewtopic.php?f=1&t=1014760
答案 1 :(得分:2)
问题来自您的hibernate工具,您已将hibernate工具配置为使用持久性单元,该单元具有通过JNDI配置的jta数据源。 为了让ant任务与JNDI对话,它需要命名工厂URL和提供者。 使用配置数据源的应用程序服务器的命名工厂类。
希望它有所帮助。
答案 2 :(得分:-1)
我有同样的错误,当我尝试升级hibernate 4.1.4时,我在hibernate.cfg.xml中更改了一行:
之前(错误):
之后(固定):