我正在尝试使用 Hibernate 工具对我的 Oracle 数据库进行逆向工程。但是,当我尝试这样做时,我收到以下错误:
Received a NoClassDefFoundError, propably the console configuration classpath is
incomplete or contains conflicting versions of the same class.
java.lang.NoClassDefFoundError: Could not initialize org.hibernate.tool.version
我读到由于 Hibernate Tools Jar 和常规 Hibernate Jars 之间的冲突,可能会发生这种情况。我删除了我的 Maven-Import 并手动添加了 Hibernate-Jar(只有解决方案中描述的 core-jar)。
我正在使用Development Milestone 4.0.0 of Hibernate Tools
,我将工具配置中的 Hibernate 版本设置为 4.0,并使用当前的 Hibernate 4.1.7。我也尝试了 Hibernate 4.0.0-Core-Jar,但每次组合我都得到了同样的错误。
哦,我使用的是 STS 3.1.0(但不要认为是那样)。
任何提示/建议将不胜感激。