NetBean构建文件中的EnversHibernateToolTask问题



我正在尝试为Envers合并hibernate模式生成器。我已经添加了这个目标:

    <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>

问题是我得到了错误taskdef class org.hibernate.tool.ant.EnversHibernateToolTask找不到使用classloader AntClassLoader[myprojectlibhibernate-persistence*.jar]

帮助是伟大的。

谢谢你,被罩。

我怀疑你的路径不正确。我不相信你可以在pathelement中使用通配符。

尝试将您的path更改为:

<path id="hibernate.classpath">
    <fileset dir="lib">
        <include name="**/*.jar"/>
    </fileset>
</path>

如果失败,使用-v标签运行ant,并检查调试以获得更多提示。

相关内容

  • 没有找到相关文章

最新更新