`

通过XDoclet(ant)生成Hibernate映射文件

阅读更多

通过XDoclet可以我们的精力放在编写java源文件上。

具体来说就是:
只有Java: java--->XDoclet(hibernatedoclet)--->Hbm---->SchemaExport(schemaexport,hbm2ddl)---->数据表

1:java源文件编写

420){this.resized=true;this.style.width=420;}" align=top> 420){this.resized=true;this.style.width=420;}" align=top> /**/ /*
420){this.resized=true;this.style.width=420;}" align=top> * Created on 2006-4-7
420){this.resized=true;this.style.width=420;}" align=top> 
*/

420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>
package  com.entity;
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>420){this.resized=true;this.style.width=420;}" align=top>
/** */ /**
420){this.resized=true;this.style.width=420;}" align=top> * 
@author  jkallen
420){this.resized=true;this.style.width=420;}" align=top> * @hibernate.class lazy="true" table="syn_dept"
420){this.resized=true;this.style.width=420;}" align=top> * @hibernate.cache usage="read-write"
420){this.resized=true;this.style.width=420;}" align=top> 
*/

420){this.resized=true;this.style.width=420;}" align=top> 420){this.resized=true;this.style.width=420;}" align=top>
public   class  SynDepartment  420){this.resized=true;this.style.width=420;}"> {
420){this.resized=true;this.style.width=420;}" align=top> 
420){this.resized=true;this.style.width=420;}" align=top>420){this.resized=true;this.style.width=420;}" align=top> 
/** */ /**  主键 id */
420){this.resized=true;this.style.width=420;}" align=top> 
private  Long id;
420){this.resized=true;this.style.width=420;}" align=top>420){this.resized=true;this.style.width=420;}" align=top> 
/** */ /**  部门名称 */
420){this.resized=true;this.style.width=420;}" align=top> 
private  String code_name;
420){this.resized=true;this.style.width=420;}" align=top> 
420){this.resized=true;this.style.width=420;}" align=top>420){this.resized=true;this.style.width=420;}" align=top> 
/** */ /**
420){this.resized=true;this.style.width=420;}" align=top>  * 
@return  Returns the id.
420){this.resized=true;this.style.width=420;}" align=top>  * @hibernate.id generator-class="native" column="id"
420){this.resized=true;this.style.width=420;}" align=top>  
*/

420){this.resized=true;this.style.width=420;}" align=top> 420){this.resized=true;this.style.width=420;}" align=top>    
public  Long getId()  420){this.resized=true;this.style.width=420;}"> {
420){this.resized=true;this.style.width=420;}" align=top>  
return  id;
420){this.resized=true;this.style.width=420;}" align=top> }

420){this.resized=true;this.style.width=420;}" align=top> 420){this.resized=true;this.style.width=420;}" align=top> 
public   void  setId(Long id)  420){this.resized=true;this.style.width=420;}"> {
420){this.resized=true;this.style.width=420;}" align=top>  
this .id  =  id;
420){this.resized=true;this.style.width=420;}" align=top> }

420){this.resized=true;this.style.width=420;}" align=top> 420){this.resized=true;this.style.width=420;}" align=top> 
/** */ /**
420){this.resized=true;this.style.width=420;}" align=top>    * 
@return  Returns the code_name.
420){this.resized=true;this.style.width=420;}" align=top>    * @hibernate.property column = "code_name"
420){this.resized=true;this.style.width=420;}" align=top>    
*/

420){this.resized=true;this.style.width=420;}" align=top> 420){this.resized=true;this.style.width=420;}" align=top> 
public  String getCode_name()  420){this.resized=true;this.style.width=420;}"> {
420){this.resized=true;this.style.width=420;}" align=top>  
return  code_name;
420){this.resized=true;this.style.width=420;}" align=top> }

420){this.resized=true;this.style.width=420;}" align=top> 420){this.resized=true;this.style.width=420;}" align=top> 
public   void  setCode_name(String code_name)  420){this.resized=true;this.style.width=420;}"> {
420){this.resized=true;this.style.width=420;}" align=top>  
this .code_name  =  code_name;
420){this.resized=true;this.style.width=420;}" align=top> }

420){this.resized=true;this.style.width=420;}" align=top>}

420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>



这里用到了几种@hibernate标记的用法
@hibernate.class标记指定类的映射代码,lazy="true" table="syn_dept"则如
hibernate的映射文件class元素的属性值具有相同的意义
@hibernate.id标记指定类的OID映射代码
@hibernate.property标记指定类的属性映射代码
另外还可能用到@hibernate.set(如一对多的情况下)

2:XDoclet--->Hbm(写在build.xml文件中,ANT运行)

420){this.resized=true;this.style.width=420;}" align=top> < target  name ="toHbm"  
420){this.resized=true;this.style.width=420;}" align=top>  depends
="compileEntity"  
420){this.resized=true;this.style.width=420;}" align=top>  description
="Generate hibernate mapping documents" >
420){this.resized=true;this.style.width=420;}" align=top>  
< hibernatedoclet  destdir ="${generated.dir}" >
420){this.resized=true;this.style.width=420;}" align=top>   
< fileset  dir ="${src.dir}" >
420){this.resized=true;this.style.width=420;}" align=top>    
< include  name ="**/entity/*.java"   />
420){this.resized=true;this.style.width=420;}" align=top>   
</ fileset >
420){this.resized=true;this.style.width=420;}" align=top>   
< hibernate  version ="2.0"   />
420){this.resized=true;this.style.width=420;}" align=top>  
</ hibernatedoclet >
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>  
< copy  todir ="${classes.dir}" >
420){this.resized=true;this.style.width=420;}" align=top>   
< fileset  dir ="${generated.dir}"   />
420){this.resized=true;this.style.width=420;}" align=top>  
</ copy >
420){this.resized=true;this.style.width=420;}" align=top> 
</ target >


通过hibernatedoclet就可以生成SynDepartment.hbm.xml映射文件
fileset顾名思义就是过滤文件了。
注:compileEntity--编译java源文件(自定义)

3:SchemaExport---->数据表

420){this.resized=true;this.style.width=420;}" align=top> < target  name ="toddl"  depends ="init" >
420){this.resized=true;this.style.width=420;}" align=top>  
< schemaexport  properties ="${classes.dir}/hibernate.properties"  
420){this.resized=true;this.style.width=420;}" align=top>   quiet
="no"  text ="no"  drop ="no"     
420){this.resized=true;this.style.width=420;}" align=top>   delimiter
="&#xd;&#xa;go&#xd;&#xa;"  output ="${sql.dir}/${synup.sql.file}"
420){this.resized=true;this.style.width=420;}" align=top>   
>
420){this.resized=true;this.style.width=420;}" align=top>   
< fileset  refid ="hibernate.synup.mapping.files"   />
420){this.resized=true;this.style.width=420;}" align=top>  
</ schemaexport >
420){this.resized=true;this.style.width=420;}" align=top>  
< echo  message ="Output sql to file: ${sql.dir}/${sql.file}"   />
420){this.resized=true;this.style.width=420;}" align=top> 
</ target >
420){this.resized=true;this.style.width=420;}" align=top> 
< fileset  id ="hibernate.synup.mapping.files"  dir ="${classes.dir}" >
420){this.resized=true;this.style.width=420;}" align=top>  
< include  name ="**/entity/*.hbm.xml"   />
420){this.resized=true;this.style.width=420;}" align=top> 
</ fileset >
通过schemaexport就向DB中生成table了。其中可能用到如下的一些属性:
 quiet:如果为yes,表示不把子DDL脚本输出到控制台
 drop:如果为yes,只执行删除数据库中的操作,但不创建新的表
 text:如果为yes,只会生成DDL脚本文件,但不会在数据库中执行DDL脚本
 output:指定存放DDL脚本文件的目录
 config:设定基于XML格式的配置文件, hbm2ddl(schemaexport)工具从这个文件中读取数据库的配置信息
 properties:设定基于java属性文件格式的配置文件,hbm2ddl(schemaexport)工具从这个文件中读取DB的配置信息
 format:设定DDL脚本中SQL语句的格式
 delimiter:为DDL脚本设置行结束符
 
 在ANT中执行:
 <target name="initOnlySynup" depends="toHbm,toddl">
 </target>
 
 OK,最后生成的映射文件如下:
420){this.resized=true;this.style.width=420;}" align=top> <? xml version="1.0" ?>
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>
<! DOCTYPE hibernate-mapping PUBLIC
420){this.resized=true;this.style.width=420;}" align=top>    "-//Hibernate/Hibernate Mapping DTD 2.0//EN" 
420){this.resized=true;this.style.width=420;}" align=top>    "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd"
>
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>
< hibernate-mapping >
420){this.resized=true;this.style.width=420;}" align=top>    
< class
420){this.resized=true;this.style.width=420;}" align=top>        
name ="com.SynDepartment"
420){this.resized=true;this.style.width=420;}" align=top>        table
="syn_dept"
420){this.resized=true;this.style.width=420;}" align=top>        dynamic-update
="false"
420){this.resized=true;this.style.width=420;}" align=top>        dynamic-insert
="false"
420){this.resized=true;this.style.width=420;}" align=top>    
>
420){this.resized=true;this.style.width=420;}" align=top>        
< cache  usage ="read-write"   />
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>        
< id
420){this.resized=true;this.style.width=420;}" align=top>            
name ="id"
420){this.resized=true;this.style.width=420;}" align=top>            column
="id"
420){this.resized=true;this.style.width=420;}" align=top>            type
="java.lang.Long"
420){this.resized=true;this.style.width=420;}" align=top>        
>
420){this.resized=true;this.style.width=420;}" align=top>            
< generator  class ="native" >
420){this.resized=true;this.style.width=420;}" align=top>            
</ generator >
420){this.resized=true;this.style.width=420;}" align=top>        
</ id >
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>        
< property
420){this.resized=true;this.style.width=420;}" align=top>            
name ="code_name"
420){this.resized=true;this.style.width=420;}" align=top>            type
="java.lang.String"
420){this.resized=true;this.style.width=420;}" align=top>            update
="true"
420){this.resized=true;this.style.width=420;}" align=top>            insert
="true"
420){this.resized=true;this.style.width=420;}" align=top>            access
="property"
420){this.resized=true;this.style.width=420;}" align=top>            column
="code_name"
420){this.resized=true;this.style.width=420;}" align=top>        
/>
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>        
<!--
420){this.resized=true;this.style.width=420;}" align=top>            To add non XDoclet property mappings, create a file named
420){this.resized=true;this.style.width=420;}" align=top>                hibernate-properties-SynDepartment.xml
420){this.resized=true;this.style.width=420;}" align=top>            containing the additional properties and place it in your merge dir.
420){this.resized=true;this.style.width=420;}" align=top>        
-->
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>    
</ class >
420){this.resized=true;this.style.width=420;}" align=top>
420){this.resized=true;this.style.width=420;}" align=top>
</ hibernate-mapping >
420){this.resized=true;this.style.width=420;}" align=top>


 控制台中部分信息如下:

420){this.resized=true;this.style.width=420;}" align=top> [schemaexport] drop table syn_dept cascade constraints
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] go
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] drop sequence hibernate_sequence
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] go
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] create table syn_dept (
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] id number(19,0) not null,
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] code_name varchar2(255),
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] primary key (id)
420){this.resized=true;this.style.width=420;}" align=top>[schemaexport] )

DB中已经生成syn_dept表了,快去看下吧!

关于Xdoclet 中的hibernate标签更多信息可以参考:
http://xdoclet.sourceforge.net/xdoclet/tags/hibernate-tags.html#@hibernate_collection-key__0__1_
我还在一个网友的博客上看到了他对此的汉化:
http://blog.csdn.net/fasttalk/archive/2005/09/19/484615.aspx


参考资料:Hibernate持久化技术详解

来源:http://www.blogjava.net/Jkallen/archive/2006/04/10/40305.html

分享到:
评论

相关推荐

    Hibernate使用xdoclet生成映射文件和sql语句

    XDoclet是基于Javadoc的元数据处理工具,它通过读取Java源代码中的特定注解,自动生成各种配置文件,包括Hibernate的.hbm.xml映射文件、EJB组件的部署描述符等。使用XDoclet,开发者无需手动创建和维护这些配置文件...

    XDoclet 与Hibernate 映射

    总结来说,XDoclet和Ant在Java开发中扮演着重要角色,前者简化了Hibernate映射文件的管理,后者则为项目构建和自动化提供了强大支持。通过合理的利用这两者,开发者可以提高工作效率,降低出错概率,使项目管理更加...

    用maven的xdoclet插件t生成hibernate配置文件

    这将会生成包含Hibernate映射文件、配置文件以及数据库脚本的`target/xdoclet`目录。 #### 结论 通过使用Xdoclet插件与Maven结合的方式,可以有效地自动生成Hibernate相关的配置文件,大大简化了开发流程并减少了...

    Ant结合Xdoclet 实例教程(之整合 Hibernate)

    4. **生成映射文件**:运行Ant脚本,它会根据源代码中的Javadoc注释自动生成Hibernate映射文件。 5. **配置Hibernate**:在hibernate.cfg.xml文件中,指定生成的映射文件路径,并配置数据库连接信息。 6. **构建...

    pojo+xDoclet生成ibatis映射文件

    为了提高开发效率,可以通过 XDoclet 自动生成 iBatis 的 SQL 映射文件。 #### 示例:User.java 下面通过一个具体的例子来说明如何使用 XDoclet 为 iBatis 自动生成 SQL 映射文件。示例代码如下: ```java ...

    Ant+XDoclet生成hbm文件

    本篇文章将详细介绍如何使用Ant和XDoclet来生成Hibernate的HBM(Hibernate Mapping)文件。 首先,Ant是一个基于Java的构建工具,它允许开发者通过XML配置文件来定义构建过程,包括编译、打包、测试等任务。Ant的...

    Xdoclet入门基础教程

    * 生成 Hibernate 映射文件:Xdoclet 可以生成 Hibernate 映射文件,用于配置数据库表和 Java 类之间的关系。 * 生成 JavaDoc 文档:Xdoclet 可以生成 JavaDoc 文档,用于描述 Java 类和方法的信息。 * 自动生成配置...

    ant hibernate mapping 生成映射文件 生成配置文件

    &lt;property name="xdoclet.home" value="D:/jarpackage/xdoclet-plugins-1.0.3"/&gt; 指出这个文件存放的位置.然后就可以使用了...里面有一个成功的例子 请读者参考 在构建域对象的时候一定要指明在配置文件中的配置信息...

    Xdoclet生成*.hbm.xml映射文件

    Xdoclet是一个强大的Javadoc扩展工具,它通过解析Java源代码中的特定注解,生成各种配置文件,包括Hibernate的映射文件、EJB的部署描述符等。开发者只需在Java类或属性上添加相应的Javadoc注解,Xdoclet就会自动读取...

    struts+hibernate+spring+xdoclet+ant+log4j

    **XDoclet** 是一个文档生成和代码生成工具,它可以自动根据Java源代码中的特定注解生成各种配置文件,如Hibernate的映射文件、EJB的部署描述符等。这减少了手动维护配置文件的工作量,提高了开发效率。 **Ant** 是...

    ant+hibernate+xdoclet源码,文档,工具包.rar

    它可能涵盖了Ant构建脚本的编写,Hibernate的实体类和映射文件的创建,以及XDoclet如何自动生成这些文件的过程。"ant+xdoclet+hibernate"可能是一个示例项目或者代码库,其中包含了实际的实现,我们可以直接运行或...

    新建 Micro用ant执行POJO自动生成映射文件及数据表soft Word 文档

    在类中添加必要的Xdoclet注释以支持后续的映射文件生成。 - **属性声明**:例如`private Long categoryId;`等。 - **Xdoclet注释**:用于指导映射文件的生成,如`@hibernate.class`、`@hibernate.id`等。 ##### 2...

    XDoclet插件包以及从Java持久化类生成hibernate mapping小例子

    总结起来,这个例子展示了如何利用XDoclet插件从Java持久化类自动生成功能强大的Hibernate映射文件和数据库脚本,极大地简化了开发过程,提高了代码的可维护性。通过这种方式,开发者可以更专注于业务逻辑,而非重复...

    常用的ANT蚂蚁脚本

    在"常用的ANT蚂蚁脚本"这个主题中,我们主要关注两个方面:`xdoclet`和`Hibernate映射文件生成`以及`部署EJB项目`。 1. **XDoclet与Hibernate映射文件生成**: XDoclet是ANT的一个插件,它允许开发者通过在Java源...

    XDoclet Api

    XDoclet是一款强大的Java文档生成工具,它允许开发者通过在Java源代码中的Javadoc注释中添加特定的标签,自动生成各种元数据,如EJB接口、Hibernate映射文件、Struts配置文件等。这个API是开发者在实际项目中提升...

    XDoclet1.2+XDoclet教程

    XDoclet是一款强大的Java代码生成工具,它通过解析Java源代码中的特定注解(annotations),自动生成各种元数据,如EJB组件接口、Hibernate映射文件、Struts配置文件等。XDoclet 1.2是该工具的一个版本,带来了许多...

    Ant结合Xdoclet 实例教程(之整合 struts)

    Xdoclet则是Java中用于自动生成代码和部署描述符的工具,它通过解析源代码中的特定注解(Javadoc标签),生成对应的Struts配置文件、Hibernate映射文件或EJB组件代码。这大大减少了手动编写这些文件的工作量,使...

    Hibernate 的Xdoclet模板

    而Xdoclet则是用于自动生成Java源代码和配置文件的工具,它能够根据注释自动创建Hibernate所需的XML配置文件,比如`hibernate.cfg.xml`和`*.hbm.xml`。在早期,Xdoclet广泛用于简化Hibernate项目,避免手动编写大量...

    XDOCLET的使用例子

    XDoclet是一款强大的Java代码生成工具,它通过解析Java源代码中的Javadoc注释,自动生成各种文件,如部署描述符(Deployment Descriptor)、持久化映射文件(Hibernate Mapping Files)、EJB组件接口和服务端的类...

    精通代码生成器XDoclet.doc

    * 自动生成 Hibernate 的映射文件 * 自动生成 Web.xml 文件 * 自动生成数据库的 DDL 文件 * 自动生成其他配置文件和数据文件 XDoclet 的优点包括: * 提高开发效率 * 减少代码重复 * 提高代码质量 * 提高开发灵活...

Global site tag (gtag.js) - Google Analytics