## nginx的日志```SHELL #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_u ...
分类:
系统相关 时间:
2021-05-24 04:12:29
阅读次数:
0
1,VScoed 首先安装Debugger fro Chrome 首先配置vue.config.js module.exports = { configureWebpack: { devtool: 'source-map' } } 然后配置VScode运行和调试 { // 使用 IntelliSen ...
分类:
其他好文 时间:
2021-05-24 04:01:57
阅读次数:
0
Sentinel 流控规则 配置流量控制规则 阈值种类 QPS:每秒钟请求数(request per second) 线程数:每秒钟线程数 流控模式 直接:就是直接触发流控效果 关联:就是关联资源达到了流控阈值,我本身进行流控(订单服务限流,那么我也进行限流) 链路:更加细粒度的(如限制了servi ...
分类:
其他好文 时间:
2021-05-24 03:47:01
阅读次数:
0
Master in Burp Suite - Tools Introductions(1) Introduction to Burp Proxy tab How to configure proxy and intercept request Deploy our target website - ...
分类:
其他好文 时间:
2021-05-24 03:33:58
阅读次数:
0
打开postman,创建Collection,添加一个Request。 仍然以访问百度经验为例。 9postman-测试GET请求13postman-添加断言,检查点 现在要将url参数化。 点击设置按钮。 点击Manage Environments。 点击Add按钮。 输入环境变量的名字:BAID ...
分类:
其他好文 时间:
2021-05-24 01:59:25
阅读次数:
0
一个简单的解决方案是:不管是服务端还是客户端,在web.config下 的system.serviceModel标签下方增加一个没有设置名字的Binding默认配置就行了。 具体配置如下: <system.serviceModel> <bindings> <basicHttpBinding> <bi ...
分类:
其他好文 时间:
2021-05-24 01:40:24
阅读次数:
0
1.使用虚拟目录是,后端中的重定向等该如何处理 string path = filterContext.HttpContext.Request.ApplicationPath; if (path == "/") { path = ""; } filterContext.Result = new Re ...
分类:
Web程序 时间:
2021-05-24 01:38:02
阅读次数:
0
请求转发: 一种在服务器内部的资源跳转方式 1. 步骤: 1. 通过request对象获取请求转发器对象:RequestDispatcher getRequestDispatcher(String path) 2. 使用RequestDispatcher对象来进行转发:forward(Servlet ...
分类:
其他好文 时间:
2021-05-24 01:02:09
阅读次数:
0
rewrite rewrite使用场景 1、地址跳转,用户访问www.drz.com这个URL是,将其定向至一个新的域名mobile.drz.com 2、协议跳转,用户通过http协议请求网站时,将其重新跳转至https协议方式 3、伪静态,将动态页面显示为静态页面方式的一种技术,便于搜索引擎的录入 ...
分类:
其他好文 时间:
2021-05-24 00:56:31
阅读次数:
0
@RequestMapping(value = "/downfile", method = RequestMethod.GET) public void downfile(HttpServletRequest request, HttpServletResponse response) { try ...
分类:
编程语言 时间:
2021-05-24 00:28:07
阅读次数:
0