Nexus 私服搭建及测试

2020-03-23
阅读 4 分钟
3.9k
Nexus 学习 1. 安装及启动 下载地址 启动 {代码...} 配置文件 nexus 有两个目录 nexus-3.21.1-01 安装 sonatype-work 数据文件 具体每个目录下的各个配置文件的作用,请参考官方文档说明 在 nexus.vmoptions 文件中修改本地启动的JVM参数,在 nexus-default.properties 文件中修改端口号,默认端口8081。 2. 仓库 2.1 仓...

国家企业信用公示系统的爬取

2019-03-30
阅读 7 分钟
13.7k
通过 requests.get 直接请求网站首页,返回 521 错误提示码,返回结果是js代码。这是采用乐加速乐反爬技术,在访问前先判断客户端的cookie是否正确,如果不正确,返回521状态码和一段js代码,并且进行set-cookie操作,返回的js代码经过浏览器执行又会生成新的cookie,这两个cookie一起发送给服务器,才会返回正确的网页...

LeetCode——Reverse Integer

2019-03-03
阅读 3 分钟
1.3k
注意 Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−2^31, 2^31 − 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows. 假设我们的环境只能存储得下 32 位的有符号整数,则其数...

LeetCode——Two Sum

2019-03-03
阅读 1 分钟
1.3k
题目简介Given an array of integers, return indices of the two numbers such that they add up to a specific target.