Maven jmeter插件:SAXParseException:prolog中不允许使用内容

时间:2015-04-20 04:27:59

标签: java maven jmeter jmeter-plugins jmeter-maven-plugin

我在jmeter的jmx文件中有这样的东西:

<stringProp name="SoapSampler.URL_DATA">http://192.168.0.1:8080/abc/Service</stringProp>

我在使用jmeter maven插件来获取maven构建时的性能测试结果。它工作得很好。

现在我将其更改为jmeter中的用户定义变量并尝试运行它。我收到以下错误:

&#34; SAXParseException:prolog&#34;

中不允许使用内容

jmx文件中的更改:

      <elementProp name="server" elementType="Argument">
        <stringProp name="Argument.name">server</stringProp>
        <stringProp name="Argument.value">http://192.168.0.1:8080</stringProp>
        <stringProp name="Argument.metadata">=</stringProp>
      </elementProp>


<stringProp name="SoapSampler.URL_DATA">${server}/abc/Service</stringProp>

但是,如果直接从jmeter GUI执行,修改后的更改将完美运行。仅在maven构建期间执行时失败。

这是我的pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.abc.def.performance</groupId>
<artifactId>abc-performance</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>



<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>



<build>
    <plugins>
        <plugin>
            <groupId>com.lazerycode.jmeter</groupId>
            <artifactId>jmeter-maven-plugin</artifactId>
            <version>1.9.0</version>
            <executions>
                <execution>
                    <id>jmeter-tests</id>
                    <phase>verify</phase>
                    <goals>
                        <goal>jmeter</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
            </configuration>
        </plugin>
        <plugin>
            <groupId>com.lazerycode.jmeter</groupId>
            <artifactId>jmeter-analysis-maven-plugin</artifactId>
            <executions>
                <execution>
                    <phase>verify</phase>
                    <goals>
                        <goal>analyze</goal>
                    </goals>
                    <configuration>
                        <!-- An AntPath-Style pattern matching a JMeter XML result file to 
                            analyze. Must be a fully qualified path. File may be GZiped, must end in 
                            .gz then. Default: not set. Required. -->
                        <source>${project.build.directory}/**/*.jtl</source>
                        <!-- directory where to store analysis result files. Default: ${project.build.directory} 
                            Required. -->
                        <targetDirectory>${project.build.directory}/results</targetDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

2 个答案:

答案 0 :(得分:1)

确保jmeter.save.saveservice.output_format=xml和 取消注释jmeter.properties文件中的行(jmeter安装文件夹的bin文件夹内):

jmeter.save.saveservice.output_format=xml
jmeter.save.saveservice.data_type=true
jmeter.save.saveservice.label=true
jmeter.save.saveservice.response_code=true
jmeter.save.saveservice.successful=true
jmeter.save.saveservice.thread_name=true

答案 1 :(得分:1)

当结果文件不是xml格式时,xml解析器会触发此特定错误消息。可能结果文件是CSV格式,因为output_format未设置为XML