(1)HTTP版本 HTTP/1.0:HTTP短连接 HTTP/1.1:HTTP长连接 HTTP/2.0:HTTP长连接+优化,支持更多并发连接 说明:可以使用curl -v www.baidu.com命令查看版本(curl相当于Linux的浏览器) (2)HTTP请求方法 方法 说明 支持的HTT ...
分类:
Web程序 时间:
2021-06-02 16:04:48
阅读次数:
0
Eclipse 中Tomcat 启动报错Eclipse的提示窗口 Server Tomcat v8.0 Server at localhost failed to start .日志输出中报 Failed to destroy end point associated with ProtocolHa ...
分类:
其他好文 时间:
2021-06-02 15:51:09
阅读次数:
0
Ajax:异步更新页面的技术,必须在http或者https网络网络协议下使用 1.原生js实现:共4步 2.jQuery:$.ajax(配置对象); 常用参数:url, type, data, success, error 3.fetch:fetch(配置).then(处理数据函数).then(接收 ...
分类:
Web程序 时间:
2021-06-02 15:26:14
阅读次数:
0
接口、内部类、异常[简单分类、异常体系结构、Error、Exception] ...
分类:
编程语言 时间:
2021-06-02 14:59:24
阅读次数:
0
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev ...
分类:
其他好文 时间:
2021-06-02 14:41:17
阅读次数:
0
一、异常 1.什么是异常? 在程序执行过程中,出现的非正常的、最终导致JVM的非正常停止的情况,就是异常 2.异常体系 异常机制的存在就是为了帮使用者找出程序中的问题所在,异常的根类是java.lang.Throwable,在其下还有两个子类:java.lang.Error和java.lang.Ex ...
分类:
其他好文 时间:
2021-06-02 14:40:22
阅读次数:
0
Druid 启动的时候提示错误如下: [Fri May 28 00:17:16 2021] Command[zk] exited (pid = 3835, exited = 1) [Fri May 28 00:17:16 2021] Command[zk] failed, see logfile f ...
分类:
其他好文 时间:
2021-06-02 14:15:21
阅读次数:
0
NGINX帮助 -h [19:08:40 root@localhost sbin]#nginx -h nginx version: nginx/1.16.1 Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [-p prefix] [-g direc ...
分类:
其他好文 时间:
2021-06-02 13:27:09
阅读次数:
0
问题描述:启动MySQL后,出现连接不上,报 [ERROR] InnoDB: Unable to lock ./ibdata1, error: 11[root@mysql01 ~]# service mysql startStarting MySQL [ OK ][root@mysql01 ~]# ...
分类:
数据库 时间:
2021-06-02 13:23:04
阅读次数:
0
1.axios基本使用 // axios 中的GET请求axios.get( '/user', { params: { ID: ‘001’ } },{ headers:{"Authorization":"Bas"+"ccccccc"} } ) .then(function (response) { ...
分类:
其他好文 时间:
2021-06-02 12:49:57
阅读次数:
0