【转】eclipse下使用hibernate tools实现hibernate逆向工程

一、基本环境 
Eclipse 3.6 
AppFuse Struts2 2.1.0 
JBoss Hibernate Tools 3.4.0

二、JBoss Hibernate Tools 3.4.0安装 
http://download.jboss.org/jbosstools/updates/stable/helios/ 
All JBoss Tools 3.2.x->Hibernate Tools 3.4.0.v20110729-2006-H171-Final

三、从数据库表生成Java类 
1.打开Hibernate视图

2.Hibernate Configurations->Add Configuration... 
【转】eclipse下使用hibernate tools实现hibernate逆向工程

3.配置Hibernate 
【转】eclipse下使用hibernate tools实现hibernate逆向工程 
Property file:选择数据库连接配置文件 
Configuration file:选择Hibernate配置文件 
【转】eclipse下使用hibernate tools实现hibernate逆向工程 
Database dialect:选择数据库对应的方言

4.打开Hibernate Code Generation Configurations... 
【转】eclipse下使用hibernate tools实现hibernate逆向工程 
Console configurations:选择刚才建立的配置 
【转】eclipse下使用hibernate tools实现hibernate逆向工程 
【转】eclipse下使用hibernate tools实现hibernate逆向工程 
reveng.xml:选择Setup,Create new...

注:如果此处无法列举出表,需要在hibernate配置文件中配置

<property name="hibernate.default_schema">[username]</property>
        <property name="hibernate.default_catalog">[username]</property>

其中[username]是用户名称,在生成的  SQL  中,将给定的  schema/
tablespace 附加于非全限定名的表名上。

【转】eclipse下使用hibernate tools实现hibernate逆向工程 
点击Refresh,列出所有用户,然后选择其中要使用的表

四、slf4j冲突 
1.查看Database时报错,错误信息

  1. An internal error occurred during: "Fetching children of Database".
  2. org.slf4j.spi.LocationAwareLogger.log(Lorg/slf4j/Marker;Ljava/lang/String;ILjava/lang/String;[Ljava/lang/Object;Ljava/lang/Throwable;)V

【转】eclipse下使用hibernate tools实现hibernate逆向工程 
2.解决方法 
在pom.xml中将

  1. <slf4j.version>1.6.1</slf4j.version>

改成

  1. <slf4j.version>1.5.8</slf4j.version>
上一篇:NodeJS 远程连接windows 上的MongoDB


下一篇:graph engine