mysql数据库表生成HIBERNATE配置文件及JAVA类文件具体如下:
1. 需要的包:
a. hibernate-2.1.6.zip
b. hibernate-extensions-2.1.2.zip
c. mysql-connector.jar
2. 具体配置:
a. setenv.bat配置如下:
@echo off
rem -------------------------------------------------------------------
rem Setup environment for hibernate tools
rem -------------------------------------------------------------------
set JDBC_DRIVER=D:stonezhangProjectListeSaleseSalesPortalWEB-INFlibmysql-connector.jar
set HIBERNATE_HOME=D:stonezhanghibernatehibernate-2.1.6hibernate-2.1
set CORELIB=%HIBERNATE_HOME%lib
set LIB=..lib
set PROPS=%HIBERNATE_HOME%src
set CP=%JDBC_DRIVER%;%PROPS%;%HIBERNATE_HOME%hibernate2.jar;%CORELIB%commons-logging-1.0.4.jar;%CORELIB%commons-collections- 2.1.1.jar;%CORELIB%commons-lang-1.0.1.jar;%CORELIB%cglib-full-2.0.2.jar;%CORELIB%dom4j-1.4.jar;%CORELIB%odmg-3.0.jar;
%CORELIB%xml-apis.jar;%CORELIB%xerces-2.4.0.jar;%CORELIB%xalan-2.4.0.jar;%LIB%jdom.jar;%LIB%..hibernate-tools.jar
b. hbm2java.bat配置如下:
@echo off
rem -------------------------------------------------------------------
rem Execute hbm2java tool
rem -------------------------------------------------------------------
call setenv.bat
java -cp %CP% net.sf.hibernate.tool.hbm2java.CodeGenerator --output=H: est H: estcom tolesales*.xml
其中H: est是生成.java文件的路径,H: estcom tolesales*.xml 是由 ddl2hbm.bat生成的xml文件的路径.
3. 操作如下:
a. 将hibernate-2.1.6.zip 和 hibernate-extensions-2.1.2.zip 解压缩到某一目录;
b. 执行hibernate-extensions-2.1.2.zip解压缩目录下toolsinsetenv.bat,设置环境变量;
c. 执行hibernate-extensions-2.1.2.zip解压缩目录下toolsinddl2hbm.bat, 弹出UI窗口,首先配置数据库连接参数,再点击Tables项,选择需生成
.hbm.xml的数据表,在Mapping项中需设置关键字类型,如字符串通常使用"uuid.string",在code选项中设置包名称及在Output项设置XML文件输出位置,
最后点击"Generate"生成XML文件.
d. 执行hibernate-extensions-2.1.2.zip解压缩目录下toolsinhbm2java.bat,即可生成相应.java文件.