首页 > 其他分享 >[JMeter] Apache Jmeter导入jmx压测脚本时,报错CannotResolveClassException: xxx

[JMeter] Apache Jmeter导入jmx压测脚本时,报错CannotResolveClassException: xxx

时间:2023-12-13 15:36:05浏览次数:38  
标签:jmx jmeter 导入 报错 https plugins Jmeter

1 问题描述

Jmeter导入jmx压测脚本时,报错CannotResolveClassException: xxx

  • JMeter Version : 5.5
  • JDK : 8

报错的关键信息:

kg.apc.jmeter.vizualizers.CorrectedResultCollector

com.thoughtworks.xstream.converters.ConversionException

可见: 缺少相关依赖包。

2 解决方法

2.1 方法1

  • jmeter的安装目录/lib/ext,导入相关插件包及依赖包,然后重启Jmeter。

2.2 方法2 【推荐】

  • 下载[jmeter]-plugins-manager.jar(插件管理器),放到/lib/ext

plugins-manager.jar 下载地址: https://jmeter-plugins.org/install/Install/

  • 然后,重启Jmeter,以后打开jmx之后缺少的包会自动下载。(推荐)

安装插件后,会自动重启,并导入原先要导入的插件。

X 参考文献

  • JMeter

标签:jmx,jmeter,导入,报错,https,plugins,Jmeter
From: https://www.cnblogs.com/johnnyzen/p/17899139.html

相关文章

  • 【报错解决】RuntimeError: An attempt has been made to start a new process...
    【报错解决】RuntimeError:Anattempthasbeenmadetostartanewprocess…今天来记录一个Pycharm当中的报错解决:RuntimeError:Anattempthasbeenmadetostartanewprocessbeforethecurrentprocesshasfinisheditsbootstrappingphase.......
  • React-native ios运行报错 No bundle URL present
    新建项目报错如下:需要手动生成ios下的main.jsbundle文件解决方法:1、生成main.jsbundle文件,在终端项目目录下执行:react-nativebundle--entry-fileindex.js--bundle-output./ios/main.jsbundle--platformios--assets-dest./ios--devfalse或在package.json里面添加以下执......
  • 关于使用appium自动化启动app时报错【问题:AttributeError: ‘NoneType‘ object has n
    报错原因:安装了最新版的appium3.0.0和selenium的最新版本,导致版本冲突从而导致报错:AttributeError:'NoneType'objecthasnoattribute'to_capabilities'解决方案:卸载selenium和appium,下载低版本的appium【下载appium的同时会下载依赖selenium】 pipinstall......
  • Python报错:performance hint: av/logging.pyx:232:5: the GIL to be acquired
     参考:https://stackoverflow.com/questions/77410272/problems-installing-python-av-in-windows-11https://github.com/PyAV-Org/PyAV/issues/1177  ================================  报错信息:C:\Windows.old\Users\chris>pipinstallavDefaultingtouserinstallatio......
  • Python报错:pkg-config could not find libraries ['avformat', 'avcodec', 'av
    参考:https://github.com/PyAV-Org/PyAV/issues/238https://pyav.org/docs/6.1.2/installation.html#mac-os-x  =====================  报错信息:C:\Users\liuxue>pipinstallavCollectingavUsingcachedav-0.3.3.tar.gzInstallingcollectedpackages:avRunning......
  • Django runserver 时报错 [Errno 11001] getaddrinfo failed
    现象描述:python使用Django命令pythonmanage.pyrunserver0:8000时,在浏览器登录遇到错误[Errno11001]getaddrinfofailed错误:解决办法:查看本机ip地址(windows在cmd中输入ipconfig可查看本机ip)打开Django项目的settings.py文件,在ALLOWED_HOSTS=[]中填入查......
  • 故障解析丨导入字符串NULL导致主从报错
    1.背景概述目前需要搭建一个从库,由于单表数据量较大,时间比较有限,考虑到导入导出的时间,并且GreatSQL支持并行loaddata的功能,能够加速数据的导入,因此决定使用selectintooutfile和loaddata的方式进行数据的迁移;在数据导入完成后进行数据同步,从库发生报错1032找不到记录,但......
  • python 报错应对列表
    =========================RESTART:D:/Python37/ziti1.py========================Traceback(mostrecentcalllast):File"D:/Python37/ziti1.py",line1,in<module>importdocxModuleNotFoundError:Nomodulenamed'docx'>>......
  • docker启动容器报错:Error response from daemon: driver failed programming external
    安装的docker启动报错如下:Errorresponsefromdaemon:driverfailedprogrammingexternalconnectivityonendpointnacos(2b0f4edff8f640559af9626936d1b38d965302ef525af483716e8e8c9121583e):(iptablesfailed:iptables--wait-tnat-ADOCKER-ptcp-d0/0--dp......
  • btoa atob 与 base64,以及btoa报错
    在JavaScript中,btoa和atob是两个用于Base64编码和解码的函数。下面是对这两个函数以及Base64的解释和代码示例:btoa函数:btoa(表示base64encode)将字符串转换为Base64编码的数据。它接受一个ASCII字符串参数,并返回经过Base64编码的字符串。b表示"binary",它......