我在maven测试运行之前和之后使用sql-maven-plugin来处理数据库。关于删除/创建模式,填充这些示例非常简单。
如何使用此插件创建数据库的SQL转储?
答案 0 :(得分:0)
sql-maven-plugin
似乎无法做到这一点。该插件的主要目的是执行SQL语句。 mysql-dump
是用于创建备份的单独工具。在这种情况下,可能的解决方案之一是使用exec-maven-plugin
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>mysql-dump-create</id>
<phase>clean</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>${path_to_mysqldump}</executable>
<workingDirectory>${workdir}</workingDirectory>
<arguments>
<argument>--user=${user}</argument>
<argument>--password=${password}</argument>
<argument>--host=${host}</argument>
<argument>--result-file=${name}</argument>
<argument>${db}</argument>
</arguments>
</configuration>
</plugin>