0
我正在嘗試爲Envers集成hibernate架構生成器。 我已經加入這個目標:NetBeans中的EnversHibernateToolTask構建文件問題
<target name="schemaexport"
description="Exports a generated schema to DB and file">
<path id="hibernate.classpath">
<pathelement path="./lib/hibernate-persistence/*.jar" />
</path>
<taskdef name="hibernatetool"
classname="org.hibernate.tool.ant.EnversHibernateToolTask"
classpathref="hibernate.classpath"/>
<hibernatetool destdir=".">
<classpath>
<fileset refid="lib.hibernate" />
<path location="${build.demo.dir}" />
<path location="${build.main.dir}" />
</classpath>
<jpaconfiguration persistenceunit="AuroraServicePU" />
<hbm2ddl
drop="false"
create="true"
export="false"
outputfilename="versioning-ddl.sql"
delimiter=";"
format="true"/>
</hibernatetool>
</target>
的問題是,我使用的類加載器AntClassLoader [MyProject的\ LIB \休眠得到錯誤 的taskdef類org.hibernate.tool.ant.EnversHibernateToolTask無法找到 -persistence * .jar]
幫助會很好。
謝謝, 伊多。