摘要: 1、创建执行线程有两种方法 扩展Thread类(重新run方法) @Override public void run() {} new MyThread().start();//启动线程 实现Runnable接口 public class MyThread extends Thread{ @Over 阅读全文
posted @ 2023-03-22 09:04 快乐的小太阳 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1、添加-取样器-http请求 ![](https://img2023.cnblogs.com/blog/759563/202303/759563-20230321111153685-635260108.png) web服务器 协议: IP: 端口 HTTP请求 GET 路径 POST 路径 添加参 阅读全文
posted @ 2023-03-21 11:28 快乐的小太阳 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ExecutorService es= Executors.newFixedThreadPool(200); for(int i=0; i<500; i++){ es.submit(new Runnable() { @Override public void run() { empService.g 阅读全文
posted @ 2023-03-16 14:54 快乐的小太阳 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 你好 1、创建RestTemplate并注入spring容器(application: ) @Beanpublic RestTemplate restTemplate(){ return new RestTemplate();} 2、利用RestTemplate发起http请求,查询用户 @Auto 阅读全文
posted @ 2023-03-16 10:37 快乐的小太阳 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/anzimaster/article/details/127639283 1.删除注册表 win+R输入regedit 分别粘贴如下两条语句 HKEY_CURRENT_USER\Software\PremiumSoft\Data HKEY_CUR 阅读全文
posted @ 2023-03-15 16:40 快乐的小太阳 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 安装步骤:https://www.bilibili.com/video/BV1ZR4y1c7PH/?spm_id_from=333.337.search-card.all.click 阅读全文
posted @ 2023-02-15 09:07 快乐的小太阳 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 第一步: 控制面板-卸载程序 简体中文一直不成功,english没问题 参考 链接 https://blog.csdn.net/weixin_43206161/article/details/119898814 阅读全文
posted @ 2023-02-14 15:35 快乐的小太阳 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 请求方法 备注 POST 创建资源-增加 GET 获取资源-查询 PUT 替换资源-修改 DELETE 删除资源 HEAD 获取服务器响应消息头 PATCH 更新资源,替换部分资源 阅读全文
posted @ 2023-02-07 09:14 快乐的小太阳 阅读(11) 评论(0) 推荐(0) 编辑
摘要: WebService接口:使用soap协议通过http传输,请求报文和响应报文都是xml格式的,常用的测试工具 SoapUI Http协议接口:目前使用最为广泛,使用http协议传输数据,常用的测试工具Jmeter、Postman等 阅读全文
posted @ 2023-02-07 09:12 快乐的小太阳 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1、postmapping: 2、deletemapping 阅读全文
posted @ 2022-09-15 13:37 快乐的小太阳 阅读(49) 评论(0) 推荐(0) 编辑