下载驱动包
官网地址:https://dev.mysql.com/downloads/connector/j/
(注:驱动包的版本一定不能大于数据库的版本,比如数据库版本是8.0.22,驱动包版本必须是8.0.22或以下版本)
导入驱动包到JMeter
将压缩包解压到目标文件夹下,把jar文件copy到JMeter的lib目录下,重启JMeter
JMeter连接MySQL
1、添加MySQL连接配置
线程组下新增配置元件:JDBC Connection Configuration
填写红框内容
**Variable Name for created pool:**数据库连接池的变量名,后续请求中需要用到
**DataBase URL:**格式jdbc:mysql://数据地址:端口/数据库名?serverTimezone=UTC&allowMultiQueries=true(serverTimezone=UTC是设置时区;allowMultiQueries=true允许多语句命令)
JDBC Driver Class:数据库驱动类型(mysql为com.mysql.jdbc.Driver)
Username:数据库登录的用户名
Password:数据库登录的用户名对应的密码
异常排查:
1、Cannot load JDBC driver class ‘com.mysql.jdbc.Driver’
- 是否安装了驱动包
- 驱动包的jar包在JMeter中位置是否在lib目录下
2、Cannot create PoolableConnectionFactory (The server time zone value ‘�й���ʱ��’ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the ‘serverTimezone’ configuration property) to use a more specific time zone value if you want to utilize time zone support.)
- 需要携带参数serverTimezone=UTC
2、添加数据库操作请求
新增取样器:JDBC Request
返回数据库表内容,连接成功: