org.hibernate.console.HibernateConsoleRuntimeException: Received a NoClassDefFoundError

在使用hibernate code generation 从数据库逆向生成Java类时报错:

org.hibernate.console.HibernateConsoleRuntimeException: Received a NoClassDefFoundError, probably the console configuration classpath is incomplete or contains conflicting versions of the same class

如图:

解决方法:

将hibernate的版本从3.6改为3.5

(之前安装的时候是用jbosstools-4.2.3.Final_2015-03-26_23-05-30-B264-updatesite-hibernatetools.zip离线安装的,我也不知道装的hibernate到底是什么版本T_T)

这个答案出自http://stackoverflow.com/questions/24324442/hibernate-tools-eclipse-luna-reverse-engineer-error-noclassdeffounderror-or里面 code9215 的回答。

时间: 2024-12-09 09:23:35

org.hibernate.console.HibernateConsoleRuntimeException: Received a NoClassDefFoundError的相关文章

Hibernate异常:java.lang.NoClassDefFoundError: org/objectweb/asm/Type

解决方法:将Hibernate lib包下的asm.jar添加到项目的library中. 解决方法:将Hibernate lib包下的cglib-2.1.3.jar添加到项目的library中.  Hibernate异常:java.lang.NoClassDefFoundError: org/objectweb/asm/Type

hibernate连接数据库和反向工程

一.JSP界面连接数据库: 导包:将11个包倒进web-inf的lib目录下: 二.建立hibernate.cfg.xml的配置文件:!注意:是放到项目SRC目录下: 三.将视图切换到java下,在左上角项目中选"其他"选出:hibernate.console.configuration 进项配置: 四.配置反射文件:hibernate.reveng.xml !注意:是放到项目SRC目录下: 五.配置和生成实体类和反射文件: 完成!洗不洗 很简单

Hibernate反向工程在javaweb下的操作配置

1.在javaEE下新建项目,在WEB-INF的lib文件夹下添加所用到的jar包. 2.创建Hibernate 主配置文件 文件----新建----其他下的Hibernate目录,如图: 下一步,注意目录在项目的src下  如图 下一步 数据如图根据自己的数据库填写 调试和自动建表方式:也可以在向导里加,具体代码如下 3.创建Hibernate Console Configuration 目的是创建数据库连接一般是选择项目的配置文件Hibernate.cfg.xml获取连接信息 会自动生成如下

hibernate spring annotation setup

First step setup for the pom.xml with hibernate dependency , hibernate dependency need to before the struts2,because the javassist dependency <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <

Hibernate框架的配置

概念 持久化框架 把对象保存到数据库中,对数据的CURD操作 配置Hibernate 1.在项目中引入Hibernate的Jar包 在 WebContent/WEB-INF/lib 目录下 导入jar包 2.在Java Resources 下创建 hibernate.cfg.xml,并填写相应信息 创建: 配置: 修改 hibernate.cfg.xml <!-- 调试 --> <property name="hibernate.show_sql">true&l

Hibernate的配置文件以及用法

一. 三大框架 Hibernate 1.安装hibernate插件至ecilpse 2.进行配置 2.1 主配置文件 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sou

Eclipse中在web项目中添加hibernate

创建web项目 创建一个web项目,FirstHibernatePro 创建数据库连接 创建一个数据库连接,这里使用的是Mysql数据库:window-->show View-->Data Source Explorer,然后在Database Connections右键 New,选择Mysql,然后去添加自己的数据库连接,并且添加详细的配置和加入相应的数据库驱动包 然后选择ok,开始测试自己的数据库连接,最后finish如果Database Source Exploer中出现了自己的数据库以

[转]hibernate在eclipse的逆向工程生成hbm.xml和bean类

原文地址:http://www.xuebuyuan.com/210489.html 以前一直用myelipse,在myeclipse做hibernate逆向工程倒是很顺手了. 可是最近改用eclipse了,开始是不会装eclipse插件,折腾了几天终于装下去了,可是又不会用病逆向工程 终于在一国外网站上终于找到了: http://iablog.sybase.com/paulley/2009/02/reverse-engineering-sql-anywhere-with-hibernate-to

学习hibernate hibernate入门程序

In this tutorial you will see how to persist the java objects using the Hibernate Object/Relational Mapping (ORM) framework. Hibernate automates ORM and considerably reduces the number of lines of code needed to persist the object in the database. Th