本文主要是介绍reverse engineering hibernate 生成带注解的实体类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装hibernate-tools插件
1.下载hibernatetools插件
- 点击eclipse菜单Help,选择Install New Software...
- 在Work with处:http://download.jboss.org/jbosside/updates/stable
- 只选择其中的Hibernate Tool
注意不要选择Contact all update sites during install to find required software,否则会长时间停留在calculating requirementsand dependencies
- 点击Next。更新完成后重启eclipse。
根据数据库逆向生成hibernate的实体类
Data Source Explorer
- 在eclipse中:WindowàShow ViewàOtheràData Source Explorer,与Servers和Console窗口同级,出现了Data Source Explorer窗口
- 右键Database ConnectionsàNew ..
选择数据库类型,并重命名
- 创建数据库连接
增加驱动
添加驱动jar包
将mysql-connector-java-5.1.0-bin.jar放到资源管理器中的合适位置
填写数据库连接信息,保存密码,选择完成
DataBase Connections的子节点,出现我们刚刚创建的数据库连接
Hibernate Configurations
- WindowàShow ViewàOther..àHibernateàHibernate Configurations
与Servers和Console同级,出现HibernateConfigurations窗口
- 空白处右键 Add Configurations..
- 指定project和Database connection
Database connection:选择之前的设置好的数据库连接
- 新建Propertyfile:Setup.. àCreate new..指定创建的位置到core下的resources下
- 创建Configuration file: Setup..--> Create new..指定创建的位置到core下的resources下
执行逆向工程
- 自定义视图
WindowàCustomize Perspective..,选择Command Groups Availability,勾选上HibernateCodeGeneration
- 选择菜单栏中的
- 创建reveng.xml
Setup..--> Create new..指定位置为core包下的resoureces
选择下一步
- 选择finish,回到Hibernate Code Generation Configurations 页面,选择Exporters
- 选择Run,在相应的entity包下,出现了相应的实体
这篇关于reverse engineering hibernate 生成带注解的实体类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!