在指定网址下载文件,并放到指定目录 import urllib.request import os url = "xxxxx" data_path = "D:/xxx" if not os.path.isfile(data_path): # 如果不存在文件 ret = urllib.request. ...
分类:
其他好文 时间:
2021-07-23 17:44:16
阅读次数:
0
dockerfile文件 #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. FRO ...
分类:
Web程序 时间:
2021-07-23 17:38:17
阅读次数:
0
作者:HelloGitHub-Anthony 这里是 HelloGitHub 推出的《讲解开源项目》系列,本期介绍一款标星 17.7k 纯 Go 语言实现的 HTTP(S) 压测工具——vegeta 项目地址:https://github.com/tsenart/vegeta Vegeta 是一款用 ...
分类:
其他好文 时间:
2021-07-22 17:39:13
阅读次数:
0
cat CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to p ...
分类:
其他好文 时间:
2021-07-19 16:46:42
阅读次数:
0
#Springboot-微服务-微服务组件之服务管理-eureka-服务的高可用-ribbon 关键要点 引入相关依赖 在restTemplate 添加@LoadBalanced//开启负载均衡注解 入门使用方式 引入依赖 <dependency> <groupId>org.springframew ...
分类:
编程语言 时间:
2021-07-19 16:38:13
阅读次数:
0
1、启动过程中出现Configuration has multiple addresses that match local node's address. Please configure the system with dfs.nameservice.id and dfs.ha.namenode ...
分类:
其他好文 时间:
2021-07-16 17:32:09
阅读次数:
0
#启动tomcat容器: docker run -d --name tomcat9.0 -p 8080:8080 registry.cn-hangzhou.aliyuncs.com/chenleilei/tomcat9:latest docker cp tomcat9.0:/usr/local/to ...
分类:
其他好文 时间:
2021-07-12 18:20:20
阅读次数:
0
在购买服务器且安装了Mysql之后,并且安全组和防火墙都开放了端口,但是还是无法连接 原因就是mysql设置的就是只有本机可以连接 解决办法 # 1. 登录服务器,在服务器上登录mysql # 2. 使用user这个库 use user; # 3. 查看root账户 select host,user ...
分类:
数据库 时间:
2021-07-05 18:40:36
阅读次数:
0
阅读目录 GET POST PUT DELETE 回到顶部 GET 安全且幂等 获取表示 变更时获取表示(缓存) 200(OK)-表示已在响应中发出 204(无内容) - 资源有空表示 301(Moved Permanently) - 资源的URI已被更新 303 (See Other) -其他(如 ...
分类:
其他好文 时间:
2021-07-05 18:23:37
阅读次数:
0
无论学习任何漏洞,都要明白一句话:函数决定漏洞性质,变量决定存不存在漏洞 一,本质 1,漏洞函数:$sql="select * from sys_article where id = $id" 2,可控变量:$id=$_GET['id'];(其它层面的先不考虑) 3,保护: 过滤关键字,进行函数判断 ...
分类:
数据库 时间:
2021-07-05 17:05:47
阅读次数:
0