如何使用sql-maven-plugin创建SQL转储

时间:2016-08-29 15:26:44

标签: mysql maven sql-maven-plugin

我在maven测试运行之前和之后使用sql-maven-plugin来处理数据库。关于删除/创建模式,填充这些示例非常简单。

如何使用此插件创建数据库的SQL转储?

1 个答案:

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