码迷,mamicode.com
首页 >  
搜索关键字:post get    ( 99963个结果
Linux 查看端口状态netstat
1、netstat命令 netstat命令可显示当前服务器上所有端口及进程服务,与grep结合可查看某个具体端口及服务情况。 参数: -t : 指明显示TCP端口 -u : 指明显示UDP端口 -l : 仅显示监听套接字(所谓套接字就是使应用程序能够读写与收发通讯协议(protocol)与资料的程序 ...
分类:Web程序   时间:2021-04-13 11:50:53    阅读次数:0
RequestMapping与GetMapping、PutMapping等注解的区别
##RequestMapping RequestMapping中的method方法 method:指定请求的method类型, GET、POST、PUT、DELETE等; ##GetMapping 看一下注解的底层源码 可以看到底层用了@RequestMapping(method = Request ...
分类:移动开发   时间:2021-04-13 11:47:36    阅读次数:0
网络流题目选解
这里有板子 最大流 view code namespace Flow { int tot=1,fi[N],ne[M],to[M],w[M],S,T,d[N],nn; inline void add(int x,int y,int c) { ne[++tot]=fi[x],fi[x]=tot,to[t ...
分类:其他好文   时间:2021-04-13 11:45:28    阅读次数:0
postman学习系列
1. postman(一):主界面模块解析 2. postman(二):使用postman发送get or post请求 3. postman(三):添加断言 4. postman(四):添加变量 5. postman(五):在不同接口之间传递数据 6. postman(六):详解在Pre-requ ...
分类:其他好文   时间:2021-04-13 11:41:25    阅读次数:0
ReentrantLock锁
ReentrantLock是可重入锁,并且可以实现公平锁。Sychronized是可重入锁、非公平锁。 话不多说,上demo: 1 package com.example.demo.util; 2 3 import java.util.concurrent.locks.ReentrantLock; ...
分类:其他好文   时间:2021-04-12 12:54:59    阅读次数:0
Weblogic JNDI注入 RCE (CVE-2021-2109) 复现
#影响范围 Weblogic Server 10.3.6.0.0、12.1.3.0.0、12.2.1.3.0、12.2.1.4.0、14.1.1.0.0 #环境搭建 docker pull ismaleiva90/weblogic12 docker run -d -p 49163:7001 -p 4 ...
分类:Web程序   时间:2021-04-12 12:44:20    阅读次数:0
Solve Error: Run 'hexo g', got 'Killed'
When you run hexo g on any web instances, like on AWS or Azure, you might get the following error: (node:3568) ExperimentalWarning: The fs.promises AP ...
分类:其他好文   时间:2021-04-12 12:28:51    阅读次数:0
stm32降功耗措施
1、降低主频,降低外设总线时钟频率 2、低频模式、正常模式切换,不工作时在低频模式,工作时在正常模式 3、低功耗模式,外部中断唤醒,定时唤醒 4、关闭不用的外设;外设不用的话断电; 5、使用低功耗的单片机 6、硬件角度考虑:降低电压;电源芯片选用 参考网址:https://m.21ic.com/ap ...
分类:其他好文   时间:2021-04-12 12:26:03    阅读次数:0
LCA — 欧拉序 + ST表
LCA — 欧拉序+ST表 \(O(n\log n)\) 预处理,\(O(1)\) 询问?。 \(lca(x,y)=\) 欧拉序中最早出现的 \(x\) 和 \(y\) 中间深度最浅的点。 Luogu P3379 #include <bits/stdc++.h> using namespace st ...
分类:其他好文   时间:2021-04-12 12:13:56    阅读次数:0
【解决】Could not GET 'https://maven.google.com
现象 解决方案 1. 由于Google被墙导致的问题 参考 配置阿里云源修改maven的源地址。 2. 由于错误配置代理导致的问题(提示400) 查看工程目录下的gradle.properties和C:/Users/用户名/.gradle/目录下的gradle.properties是否存在下面的内容 ...
分类:Web程序   时间:2021-04-12 12:07:10    阅读次数:0
99963条   上一页 1 ... 71 72 73 74 75 ... 9997 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!