将文件夹中的所有jar添加到jmeter类路径中

时间:2015-04-01 20:06:21

标签: jmeter classpath

我有一个CI服务器将多个应用程序jar及其各种依赖项转储到一个文件夹中。我试着用jmeter的类路径中的所有罐子进行jmeter测试。

我可以将jmeter的user.classpath属性设置为(半)冒号分隔的单个罐子列表,但似乎不支持使用外卡。有没有办法可以将整个文件夹的jars添加到jmeter的类路径?

1 个答案:

答案 0 :(得分:5)

根据How to Use JUnit With JMeter guide:

  

您还可以“告诉”JMeter通过“user.classpath”属性查看其他位置。此属性位于JMeter安装的/ bin文件夹下的“user.properties”文件中。它可以采用以下值:

     
      
  • 单个jar文件:user.classpath = / Projects / junit / test1.jar
  •   
  • 多个jar文件:user.classpath = / Projects / junit / test1.jar; /Projects/junit/test2.jar
  •   
  • 文件夹:user.classpath = / Projects / junit
  •   
  • 以上的任何组合。各个类路径条目需要用分号或冒号分隔,具体取决于底层操作系统
  •   

帖子是关于JUnit的,但是类加载和类路径配置适用于任何外部.jar文件。

请记住,更改类路径不是动态过程,您需要重新启动JMeter才能选择任何新的jar或更改属性。