我是靠谱客的博主 虚拟月亮,最近开发中收集的这篇文章主要介绍Jmeter ERROR o.a.j.u.BeanShellInterpreter: Error invoking bsh method: eval null,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
Jmeter 编写beanshell脚本中异常
ERROR o.a.j.u.BeanShellInterpreter: Error invoking bsh method: eval null
WARN o.a.j.e.BeanShellPostProcessor: Problem in BeanShell script: org.apache.jorphan.util.JMeterException: Error invoking bsh method: eval null
WARN o.a.j.e.BeanShellPostProcessor: Problem in BeanShell script: org.apache.jorphan.util.JMeterException: Error invoking bsh method: eval null
WARN o.a.j.a.BeanShellAssertion: org.apache.jorphan.util.JMeterException: Error invoking bsh method: eval
In file: inline evaluation of: '' Encountered "=" at line 11, column 17.
以上错误是由于脚本方法中引用了无效变量
后来才发现了Script(see below for variables that are defined)
我理解的就是beanshell脚本中的变量只引用的对象一定是已经定义过的,不能自己在脚本中new 新对象
但是
String testCity = (String)vars.getObject("testCity");
String[] status = testCity.split(",");
int size = status.length;
String[] status = testCity.split(",");
int size = status.length;
这样是可以的
最后
以上就是虚拟月亮为你收集整理的Jmeter ERROR o.a.j.u.BeanShellInterpreter: Error invoking bsh method: eval null的全部内容,希望文章能够帮你解决Jmeter ERROR o.a.j.u.BeanShellInterpreter: Error invoking bsh method: eval null所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复