eclipse3.7安装hibernate tools 逆向生成实体类和映射文件

一、eclipse3.7 安装Hibernate Tools插件:

(1) 打开eclipse,点击Help > Install New Software...>

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第1张图片

(2) 添加如下地址:http://download.jboss.org/jbosstools/updates/development/indigo/

(3) 选择JBoss Tools > Hibernate Tools工具

(4) next、finish就安装成功了

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第2张图片

二、打开hibernate configurations窗口

(1) 重启eclipse,Windows->show view->other,如果找到hibernate,则配置成功

选择Hibernate Configurations,点击OK

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第3张图片

(2) 新建一个用于生成的项目

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第4张图片

在打开窗口空白处右击,点击Add Configuration

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第5张图片

(3) 在Main菜单下,输入Name,选择新建的那个项目

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第6张图片

(4) Database connection点击New,选择PostgreSOL,点击next

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第7张图片

 

(5) 点击下图中按钮,新建一个数据库驱动的配置

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第8张图片

输入配置,点击test connection成功后,点击finish

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第9张图片

(6) 在Common选项卡中的Encoding选择UTF-8,其它默认,点击OK

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第10张图片

(7) 在Hibernate Configuration窗口下右键->刷新,展开可看到数据库情况

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第11张图片

三、从数据库逆向生成Hibernate实体类

(1) Window->CustomizePerspective->Command Groups Availability,选择Hibernate CodeGeneration,点击OK

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第12张图片

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第13张图片

(2) 在工具栏上看见hibernate工具,选择Hibernate Code Generation Configurations

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第14张图片

(3) 右键Hibernate Code Generation->new,选择输出的项目地址,填写包名,勾选Reverse engineer from JDBC Connection,然后创建hibernate.reveng.xml

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第15张图片

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第16张图片

(4) 点击Next,Console configuration选择刚刚配置好的hibernate,点击Refresh按钮,就会出现数据库的全部schema,

找到你的数据库,选择要生成实体类的表,然后Include到右侧窗口里,点击Finish按钮完成hibernate.reveng.xml的创建

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第17张图片

(5) 返回后选择Exporters选项卡,勾选Domain code和Hibernate XML Mappings,

在Common下Encoding选择UTF-8,然后点击Run按钮

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第18张图片

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第19张图片

(6) 刷新src目录,可看见生成的实体类

eclipse3.7安装hibernate tools 逆向生成实体类和映射文件_第20张图片

你可能感兴趣的:(Java,Hibernate)