站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 2.1.8 正式版 API 英文文档

SchemaExportTask (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


net.sf.hibernate.tool.hbm2ddl
Class SchemaExportTask

java.lang.Object
  extended byorg.apache.tools.ant.ProjectComponent
      extended byorg.apache.tools.ant.Task
          extended byorg.apache.tools.ant.taskdefs.MatchingTask
              extended bynet.sf.hibernate.tool.hbm2ddl.SchemaExportTask
All Implemented Interfaces:
org.apache.tools.ant.types.selectors.SelectorContainer

public class SchemaExportTask
extends org.apache.tools.ant.taskdefs.MatchingTask

An Ant task for SchemaExport.

 <taskdef name="schemaexport"
     classname="net.sf.hibernate.tool.hbm2ddl.SchemaExportTask"
     classpathref="class.path"/>

 <schemaexport
     properties="${build.classes.dir}/hibernate.properties"
     quiet="no"
     text="no"
     drop="no"
     delimiter=";"
     output="${build.dir}/schema-export.sql">
     <fileset dir="${build.classes.dir}">
         <include name="*.hbm.xml"/>
     </fileset>
 </schemaexport>
 

Author:
Rong C Ou
See Also:
SchemaExport

Field Summary
 
Fields inherited from class org.apache.tools.ant.taskdefs.MatchingTask
fileset, useDefaultExcludes
 
Fields inherited from class org.apache.tools.ant.Task
description, location, target, taskName, taskType, wrapper
 
Fields inherited from class org.apache.tools.ant.ProjectComponent
project
 
Constructor Summary
SchemaExportTask()
           
 
Method Summary
 void addFileset(org.apache.tools.ant.types.FileSet set)
           
 void execute()
          Execute the task
 void setConfig(String configurationFile)
          Set a .cfg.xml file, which will be loaded as a resource, from the classpath
 void setDelimiter(String delimiter)
          Set the end of statement delimiter for the generated script
 void setDrop(boolean drop)
          Enable "drop" mode.
 void setNamingStrategy(String namingStrategy)
           
 void setOutput(String outputFile)
          Set the script output file
 void setProperties(File propertiesFile)
          Set a properties file
 void setQuiet(boolean quiet)
          Enable "quiet" mode.
 void setText(boolean text)
          Enable "text-only" mode.
 
Methods inherited from class org.apache.tools.ant.taskdefs.MatchingTask
addAnd, addContains, addCustom, addDate, addDepend, addDepth, addFilename, addMajority, addNone, addNot, addOr, addPresent, addSelector, addSize, appendSelector, createExclude, createExcludesFile, createInclude, createIncludesFile, createPatternSet, getDirectoryScanner, getImplicitFileSet, getSelectors, hasSelectors, selectorCount, selectorElements, setCaseSensitive, setDefaultexcludes, setExcludes, setExcludesfile, setFollowSymlinks, setIncludes, setIncludesfile, setProject, XsetIgnore, XsetItems
 
Methods inherited from class org.apache.tools.ant.Task
getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, handleErrorFlush, handleErrorOutput, handleFlush, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName
 
Methods inherited from class org.apache.tools.ant.ProjectComponent
getProject
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SchemaExportTask

public SchemaExportTask()
Method Detail

addFileset

public void addFileset(org.apache.tools.ant.types.FileSet set)

setProperties

public void setProperties(File propertiesFile)
Set a properties file

Parameters:
propertiesFile - the properties file name

setConfig

public void setConfig(String configurationFile)
Set a .cfg.xml file, which will be loaded as a resource, from the classpath

Parameters:
configurationFile - the path to the resource

setQuiet

public void setQuiet(boolean quiet)
Enable "quiet" mode. The schema will not be written to standard out.

Parameters:
quiet - true to enable quiet mode

setText

public void setText(boolean text)
Enable "text-only" mode. The schema will not be exported to the database.

Parameters:
text - true to enable text-only mode

setDrop

public void setDrop(boolean drop)
Enable "drop" mode. Database objects will be dropped but not recreated.

Parameters:
drop - true to enable drop mode

setDelimiter

public void setDelimiter(String delimiter)
Set the end of statement delimiter for the generated script

Parameters:
delimiter - the delimiter

setOutput

public void setOutput(String outputFile)
Set the script output file

Parameters:
outputFile - the file name

execute

public void execute()
             throws org.apache.tools.ant.BuildException
Execute the task

Throws:
org.apache.tools.ant.BuildException

setNamingStrategy

public void setNamingStrategy(String namingStrategy)