我有一个类似的设置,你可以在这里使用纯 scala。在这种情况下,你可以创建一个名为 Config 的对象,例如
object Configuration { var INPUT_PROFILE_FILE_NAME = ""; }
这个类也可以读取文件,我在上面的对象中有下面的代码
val file = getClass.getResource("data/config.properties").getFile()
val prop = new Properties()
prop.load(new FileInputStream(file));
INPUT_PROFILE_FILE_NAME = prop.getProperty("inputProfileFileName")
现在您可以在 Gatling Simulation File val profileName= Configuration.INPUT_PROFILE_FILE_NAME 中导入这个对象;
https://docs.scala-lang.org/tutorials/tour/singleton-objects.html.html