java – JMeter中的OutOfMemoryError

在JMeter中,我收到此错误.

jmeter.JMeter: Uncaught exception:  java.lang.OutOfMemoryError: Java heap space

请让我知道如何解决.

解决方法

增加JMeter堆内存

>在您的资源管理器中找到安装JMeter的位置
>打开bin目录.
>找到JMeter.bat文件并使用文本编辑器打开它
>找到以下设置HEAP

You can set this HEAP value to whatever you like,in this example I’ve said allocate 2 GB of memory from the start and throughout the test run: set HEAP=-xms2048m -Xmx2048m

相关文章

Java中的String是不可变对象 在面向对象及函数编程语言中,不...
String, StringBuffer 和 StringBuilder 可变性 String不可变...
序列化:把对象转换为字节序列的过程称为对象的序列化. 反序...
先说结论,是对象!可以继续往下看 数组是不是对象 什么是对...
为什么浮点数 float 或 double 运算的时候会有精度丢失的风险...
面试题引入 这里引申出一个经典问题,看下面代码 Integer a ...