使用sql-maven-plugin时,<outputfile>属性无法正常工作

时间:2017-05-11 17:28:24

标签: java sql oracle maven sql-maven-plugin

我正在使用sql-maven-plugin来执行一个简单的DB测试用例。

首先,我将2行数据插入表中(注意:我在执行此操作之前手动截断表)

然后我运行一个select查询来检查是否插入了这两行。

要检查是否插入了这两行,我使用sql-maven-plugin的属性将查询结果存入文件。

但是在运行maven之后,会创建输出文件,但它不包含任何数据。 大小为0 KB。

请使用maven-sql-plugin建议我在哪里出错或使用任何其他方法在文件中输出查询。

先谢谢

在下面添加了我的pom.xml的执行标记: -

      <execution>
        <id>insert-data</id>
        <phase>process-test-resources</phase>
        <goals>
          <goal>execute</goal>
        </goals>
        <configuration>
          <autocommit>true</autocommit>

          <srcFiles>
            <srcFile>insert-in-usage.sql</srcFile>
          </srcFiles>
        </configuration>
      </execution>

      <execution>
        <id>select-data</id>
        <phase>process-test-resources</phase>
        <goals>
          <goal>execute</goal>
        </goals>

        <configuration>
         <sqlCommand>select distinct decode(count(*),2,'PASS','FAIL') as results from usage where version='3';</sqlCommand>
          <outputFile>result.xls</outputFile>
        </configuration>
      </execution>

    </executions>

1 个答案:

答案 0 :(得分:1)

对于像我这样年后来到这里的新用户:你必须添加参数

<printResultSet>true</printResultSet>

在配置中。根据{{​​3}},它自1.3版本开始提供。