码迷,mamicode.com
首页 > 系统相关 > 详细

Jmeter入门10 加密串处理方式2:BeanShell PreProcessor

时间:2018-10-20 13:39:48      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:请求   图片   type   color   引入   href   blog   加密   hone   

 上一个博客讲了方式一:函数助手__digest加密,BeanShell PreProcessor也可以用java代码进行处理

 

线程组、参数、请求都直接使用上一个博客的。

第一步 添加BeanShell PreProcessor

技术分享图片

 

2 script中输入代码

import org.apache.commons.codec.digest.DigestUtils; //引入包

String str = vars.get("phone")+vars.get("password")+vars.get("usertype");  //取jmeter参数进行拼接
vars.put("beanshell_str",str);
vars.put("beanshell_entrystring",DigestUtils.sha256Hex(str));  //加密,定义接受对应值的jmeter参数名

 

技术分享图片

3 请求中引用参数

技术分享图片

 

4 运行,结果树查看结果。与方式一的加密串一致。

技术分享图片

 

 

the end!

 

Jmeter入门10 加密串处理方式2:BeanShell PreProcessor

标签:请求   图片   type   color   引入   href   blog   加密   hone   

原文地址:https://www.cnblogs.com/dinghanhua/p/9821250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!