参考资料:
eclipse在线配置hibernate tools
http://jingyan.baidu.com/article/db55b609959d154ba20a2f5d.html
【图】Hibernate Tools-代码生成 - Adam哥 - 博客园
http://www.cnblogs.com/abllyboy/archive/2010/12/23/1914577.html
一.在eclipse里安装hibernate插件
1.查看eclipse 版本
2.进入Eclipse MarketsPlace
2.在搜索框中,输入“Hibernate Tools” 点击“Go”搜索,找到如下的一条记录(Hiberntate Tools 是JBoss的一款工具),选择“Install”安装。(我只看到这一条JBoss)
3.这里我们只需要“Hibernate Tools”,如下图一步一步完成安装。
安装完成后会弹出两个对话框(忘记截图了),点击确认即可,重新启动Eclipse。
二:hibernate tools的使用
1.在pom.xml里加上mysql的jdbc驱动和hibernate
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.29</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>4.2.4.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.common</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>4.0.2.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>3.1.0.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>1.0.1.Final</version>
</dependency>
运行 run as - maven install
2.利用Hibernate Tools生成hibernate.cfg.xml文件,如下图
点击完成后,它将生成如下xml的配置文件
3.Hibernate Console 配置
a.右键工程,点击Run as-Run Configurations进入如下界面并选择Hibernate Console Configuration:
4.利用Hibernat Tools生成reveng.xml
a.工程中右键如下图,添加reveng.xml
5.这是最后一步了,激动人心的时刻就要到了
a.在Eclipse的工具栏中将Hibernate Code Generate显示出来,显示出来后点击Hibernate Code Generate Configurations,如下图: