请求转发: 一种在服务器内部的资源跳转方式 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
https://blog.csdn.net/likun557/article/details/100036207?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522162035687416780366590036%2522%252C%25 ...
分类:
其他好文 时间:
2021-05-24 00:23:44
阅读次数:
0
一、Xpath 1.1、Xpath介绍 XPath是一门在 XML 文档中查找信息的语言。XPath 用于在 XML 文档中通过元素和属性进行导航。 XML是和HTML格式类似的标记语言。拥有标签,节点等元素。但是HTML会被浏览器识别,并根据标签的含义生成对应的样式。xml则不会被识别,且他的标签 ...
分类:
其他好文 时间:
2021-05-24 00:02:14
阅读次数:
0
1 import urllib.request 2 #获取一个get请求 3 response = urllib.request.urlopen("http://www.baidu.com") 打开网页并返回网页内容给response print(response.read().decode('ut ...
分类:
编程语言 时间:
2021-05-23 23:31:18
阅读次数:
0
0x0 引言 网络上关于 git rebase 使用的教程不少,其中一篇把远端操作混入了进来,绘制的 commit tree 放了 hash 码也导致乱乱的,个人觉得不妥。git rebase 的理解应该是和远端独立的,用1~2个数字和字母来替代 hash 码会更加直观;同时结合了 git krak ...
分类:
其他好文 时间:
2021-05-04 15:16:48
阅读次数:
0
1.XMLDecoder 反序列化漏洞 cve-2017-10271/3506 影响版本10.3.6.0, 12.1.3.0, 12.2.1.0, 12.2.1.1 , 12.2.1.2 受影响url ,在这个配置里面: C:\Oracle\Middleware\user_projects\doma ...
分类:
Web程序 时间:
2021-05-03 12:59:59
阅读次数:
0
S3 File Size Single S3 Object can range in size from 0 bytes to 5TB Largest object that can be uploaded in a single PUT request is 5GB For Objects lar ...
分类:
其他好文 时间:
2021-05-03 12:56:01
阅读次数:
0
post接收字符串 def subscription(request): msg = request.POST.get('msg') # tel_no = request.POST.get('tel_no') # email = request.POST.get('email') # ico_id ...
分类:
Web程序 时间:
2021-05-03 12:45:35
阅读次数:
0