HttpSession session = request.getSession(); // 用来存储原sessionde的值 ConcurrentHashMap concurrentHashMap = new ConcurrentHashMap(); Enumeration enumeration ...
分类:
其他好文 时间:
2021-04-10 13:05:06
阅读次数:
0
模版层 模版语法传值 {{}}:变量相关 {%%}:逻辑相关 def index(request): # 模版语法可以传递的后端python数据类型 n = 123 f = 11.11 s = '字符串' b = True l = [111,222,333,444] t = (111,222,333 ...
分类:
其他好文 时间:
2021-04-08 13:59:36
阅读次数:
0
zabbix服务端安装 环境: 主机|ip|应用 | | 服务端|192.168.23.140|基于lamp架构下部署zabbix server, zabbix agent 准备工作 //安装依赖包 [root@localhost ~]# yum -y install net-snmp-devel ...
分类:
其他好文 时间:
2021-04-08 13:51:27
阅读次数:
0
例子 from rest_framework.views import APIView class StudentAPIView(APIView): def get(self, request): pk = request.query_params.get(pk) student_obj = Stu ...
分类:
Web程序 时间:
2021-04-08 13:26:42
阅读次数:
0
搭建springboot项目,我们都是采用的Restful接口,那么问题来了,当前端调用接口或者是其他项目调用时,我们不能单一靠调用方来控制参数的准确性,自己也要对一些非空的值进行判定。 按照我们以往的做法,都是对request中的参数一个一个进行非空判定。 Model: public class ...
分类:
编程语言 时间:
2021-04-08 13:23:08
阅读次数:
0
CSRF:跨站请求伪造 (cross-site request forgery) cookie伪造 用户在注册网站登录过 引诱点击(链接自动携带cookie) 防御: 加token验证 referer验证 页面来源 是否来自该站点下的页面 隐藏令牌 (类似于token 放在http请求头中) XSS ...
分类:
其他好文 时间:
2021-04-07 11:37:38
阅读次数:
0
方法1:直接拖动 方法2:在Tests中设置,请求后的设置。 postman.setNextRequest('Request 3'); ...
分类:
其他好文 时间:
2021-04-07 11:31:13
阅读次数:
0
1.概念 Cache-control用于控制HTTP缓存(在HTTP/1.0中可能部分没实现,仅仅实现了Pragma: no-cache) 数据包中的格式: Cache-Control: cache-directive cache-directive可以为以下: request时用到: | "no- ...
分类:
Web程序 时间:
2021-04-07 11:20:59
阅读次数:
0
request的header信息在通过feign调用的时候,不能直接传过去,可以写一个拦截器,给他发过去,但是中间出了个小bug,报错too many bytes written,经百度,找了如下https://blog.csdn.net/qq_39986681/article/details/10 ...
分类:
其他好文 时间:
2021-04-07 11:20:39
阅读次数:
0
常见的问题,记录操作日志中发现,getRemoteAddr取到的客户端的ip地址不是真实的ip,需要解析请求头中的信息获取正确ip。 public static String getIpAddress(HttpServletRequest request) { String ip = request ...
分类:
编程语言 时间:
2021-04-07 10:50:41
阅读次数:
0