Session与Cookie的原理以及使用小案例 Cookie和Session所解决的问题 都是用来解决HTTP的无状态问题,由于HTTP每一次请求都相当于不同的用户向服务器发送请求。HTTP协议无法记住浏览器端是不是同一个用户。Cookie和Session都是为了解决一个用户的多次请求之间数据的共 ...
分类:
编程语言 时间:
2021-05-25 17:52:07
阅读次数:
0
打开charles,点击proxy-选中Throttle Settings 勾选Enable Throttling 点击ok。弱网环境设置成功 如果是针对单独的地址进行弱网测试,可选中location.添加需要测试的url ...
分类:
其他好文 时间:
2021-05-24 16:24:38
阅读次数:
0
1:点击安装文件charles-proxy-4.2.8-win64.msi 2:点击下一步 3:勾选同意,点击”next”按钮 4:指定安装的路径,继续点击”next”按钮 5:点击”install”按钮 6:等待安装 7:点击”Finish”按钮 8:安装结束 ...
分类:
其他好文 时间:
2021-05-24 15:35:33
阅读次数:
0
一.报错信息 Error occurred while trying to proxy request /user/report-user from localhost:83 .... 二.index.js 配置信息 proxyTable: { '/api': { target: 'http://l ...
1.nigin添加一段配置 server { listen 80; # this is the key !!!!! proxy_set_header Host $host; location /client/pids { proxy_pass http://10.103.13.103:3200/cl ...
分类:
编程语言 时间:
2021-05-24 14:35:17
阅读次数:
0
######创建型模式,隐藏了类的实例的创建细节。将对象的创建和对象的使用分离。外界使用者只需要知道他们的共同的接口,不需要知道具体的实现细节,符合单一职责原则。 ####简单工厂模式(Simple Factory Pattern or Static Factory Pattern) 使用该模式的环 ...
分类:
其他好文 时间:
2021-05-24 08:39:40
阅读次数:
0
设置 http 代理 socks5 协议代理 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' http / htt ...
分类:
其他好文 时间:
2021-05-24 08:22:53
阅读次数:
0
@DateTimeFormat(pattern = "yyyy-MM-dd") 这个注解用于前端向后端以Params方式传递日期,但是注意这个不适用于和@RequestBody以json一起使用的情况 @JsonFormat (pattern = "yyyy-MM-dd",timezone = "G ...
分类:
其他好文 时间:
2021-05-24 05:50:39
阅读次数:
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
中介者模式 | 菜鸟教程 https://www.runoob.com/design-pattern/mediator-pattern.html 中介者模式 中介者模式(Mediator Pattern)是用来降低多个对象和类之间的通信复杂性。这种模式提供了一个中介类,该类通常处理不同类之间的通信, ...
分类:
其他好文 时间:
2021-05-24 00:28:25
阅读次数:
0