该文被密码保护。 阅读全文
posted @ 2020-12-07 11:55 漫步者1号 阅读(1) 评论(0) 推荐(0) 编辑
摘要: jmeter响应截图: 原因是:在http请求中,使用的是消息体数据传参 解决方法: 在HTTP信息头管理器中添加Content-Type为:application/json 阅读全文
posted @ 2020-11-25 14:59 漫步者1号 阅读(771) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-11-02 11:13 漫步者1号 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 1.警告: JDBC driver de-registration failed for web application [/manager]java.lang.NullPointerException 2.原因: 使用killall 或者 kill -9直接杀死java进程,导致相关内存没有及时释 阅读全文
posted @ 2020-09-16 18:34 漫步者1号 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 一、安装stress工具 (1)上传压缩包[root@localhost data]# rz(2)解压[root@localhost data]# tar -zxvf stress-1.0.4.tar.gz (3)进入stress-1.0.4目录[root@localhost data]# cd s 阅读全文
posted @ 2020-09-07 15:32 漫步者1号 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 一、系统:CentOS-7.8 1.首先查看Linux版本的信息:cat /etc/redhat-release 2.在线安装:yum install docker -y 3.命令汇总如下 # systemctl start docker // 启动docker # systemctl stop d 阅读全文
posted @ 2020-09-02 09:40 漫步者1号 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 1.安装mysql-connector-odbc-5.3.12-win32.msi 2.报错 3.问题原因:mysql找不到Visual C++ Redistributable 4.所以解决方案是从下载 Visual C++ Redistributable安装 5.下载路径为:https://www 阅读全文
posted @ 2020-08-31 10:09 漫步者1号 阅读(1389) 评论(0) 推荐(0) 编辑
摘要: 1.将sql文件上传至/usr目录下 2、在服务器上进入数据库 3、执行SQL文件 4、完工 5、可以用show的命令查看表 阅读全文
posted @ 2020-08-28 17:16 漫步者1号 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 一、分组查询:group by 1.什么是分组?为什么要分组? (1)分组指的是:将所有记录按照某个相同字段进行归类 (2)首先明确一点:分组发生在where之后,即分组是基于where之后得到的记录而进行的 二、group by的使用 1、单独使用group by关键字分组 注意:按照post字段 阅读全文
posted @ 2020-08-27 12:21 漫步者1号 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1.单条件查询 2.多条件查询 3.关键字 between and 4. 关键字not between and 5.关键字 is null (判断某个字段是否为null 不能为等号,需要用is) 6.关键字 is not null 7.关键字 or 8.关键字 in 9.关键字 not in 10. 阅读全文
posted @ 2020-08-27 11:24 漫步者1号 阅读(187) 评论(0) 推荐(0) 编辑