我使用hibernate3-maven-plugin自动创建一个可用于在新数据库中创建数据库模式的SQL脚本。我是通过hbm2ddl工具完成的。我认为当我指示它将SQL写入文件时,它将停止使用50页SQL混乱我的maven构建。无论如何要让它停止写入控制台并只写入文件?找不到答案!
答案 0 :(得分:2)
将此添加到此插件的配置中:
<componentProperties>
...
<console>false</console>
...
</componentProperties>
答案 1 :(得分:0)
<plugin>
<!-- run "mvn hibernate3:hbm2ddl" to generate a schema -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>3.0</version>
<executions>
<execution>
<id>create-schema</id>
<phase>process-test-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<hibernatetool>
<classpath>
<path location="${project.build.directory}/classes" />
<path location="${project.basedir}/src/main/resources" />
</classpath>
<configuration configurationfile="${project.basedir}/src/main/resources/hibernate.cfg.xml"></configuration>
<hbm2ddl create="true" export="false" console="false" destdir="${project.basedir}/target" drop="true" outputfilename="mysql.sql" format="true" />
</hibernatetool>
</configuration>
</execution>
</executions>
</plugin>
有一个名为“console”的属性,您只需将其设置为“false”
即可