我想使用Hibernate和Gradle从现有数据库生成POJO。 Gradle可以轻松调用Ant任务,Hibernate可以为逆向工程数据库执行ant任务。
我在网上找到了这个旧的Gradle任务定义,并将其修改为最新版本的Gradle,但它不起作用:
ant {
taskdef(name: 'hibernatetool',
classname: 'org.hibernate.tool.ant.HibernateToolTask',
classpath: configurations.compile.asPath )
mkdir( dir: "$buildDir/generated" )
hibernatetool( destdir : "$buildDir/generated" ) {
annotationconfiguration( configurationfile:"$classesDir/hibernate.cfg.xml" )
hbm2ddl( export: false, outputfilename: 'schema.sql' )
classpath {
pathelement( path: classesDir )
}
}
}
我收到错误:
No such property: classesDir for class: org.gradle.api.internal.project.DefaultAntBuilder
如何修改它以从数据库生成模式文件? (我知道这还不会产生POJO,但这是第一步!)
我的依赖关系看起来像:
dependencies {
compile 'org.hibernate:hibernate-tools:4.0.0-CR1'
testCompile group: 'junit', name: 'junit', version: '4.10'
}
答案 0 :(得分:0)
我的猜测是你要使用主源集中的类输出目录:
sourceSets.main.output.classesDir
如果您只使用classesDir
,Gradle将尝试解析AntBuilder
个实例上的字段。