hibernate 数据库表-javabean

1、用eclipse的数据库管理器 date source explorer建立与数据库的链接。
           具体方法为在“datebase connections”上右键->new一个链接
    2、打开hibernate tool插件的 hibernate configurations窗口,
            右键->add configuration,配置属性。project选择你要的工  程 database connection选择刚刚配置的数据库链接
     3、在ide的工具栏上右键,选择 customize perspective,
            然后选择command group availability标签,
            勾选hibernate code generation,确定后,工具栏中会多出一个功能按钮,就是刚刚选择的hibernate code generation。
            单击该功能按钮旁边的下拉选项,选择hibernate code generation configuration,弹出对话框,
            配置自动生成的文件所在工程和包路径。
            必填写为如下:“Main”选项卡中 "output directory" 为工程下的src路径,"package"为整个包路径;
            “exporters”选项卡下选择"Domain code(.java)"、"Hibernate XML Mappings(.hbm.xml)"
    4、next,从数据库中选择要生成的表,貌似过程都很慢,慢慢等吧

你可能感兴趣的:(Hibernate)