综合概述 Spring Security 是 Spring 社区的一个顶级项目,也是 Spring Boot 官方推荐使用的安全框架。除了常规的认证(Authentication)和授权(Authorization)之外,Spring Security还提供了诸如ACLs,LDAP,JAAS,CAS ...
分类:
编程语言 时间:
2019-06-29 12:36:43
阅读次数:
116
CS229 Machine Learning Stanford Course by Andrew Ng Course material, problem set Matlab code written by me, my notes about video course: https://githu ...
分类:
系统相关 时间:
2019-06-27 00:59:40
阅读次数:
218
Shark简介 前身为Kratos,轻量级Mysql分库分表(Sharding)中间件,丰富的Sharding算法支持(2类4种分片算法),能够方便DBA实现库的水平扩容和降低数据迁移成本。Shark站在巨人的肩膀上(SpringJdbc、Druid),采用与应用集成架构,放弃通用性,只为换取更好的 ...
分类:
数据库 时间:
2019-06-21 18:28:13
阅读次数:
132
模块准备 : pip install pdfminer.six from pdfminer.pdfinterp import PDFPageInterpreter,PDFResourceManagerfrom pdfminer.converter import TextConverter,PDFPa ...
分类:
其他好文 时间:
2019-06-19 19:53:42
阅读次数:
109
安装包只需要经过一次传输,另一次则是可以忽略不计的请求 安装 使用 NPM引入: script标签引入: 最后 源码地址:https://github.com/chenquincy/app-info-parser 引用: 前端解析ipa、apk安装包信息 —— app-info-parser ...
分类:
移动开发 时间:
2019-06-17 13:02:31
阅读次数:
386
``` import asyncio import re import typing from concurrent.futures import Executor, ThreadPoolExecutor from urllib.request import urlopen DEFAULT_EXEC... ...
分类:
其他好文 时间:
2019-06-15 18:52:47
阅读次数:
131
ajax的post方法相比get方法,在传参形式上很不一样, get把参数用'?'拼接在端口后,并且用'&'连接;而post则是需要在send参数里设置. 根据ajax实例xhr.setRequestHeader('content-type', )中第二个参数的不同, send的参数也不相同. 最常 ...
分类:
Web程序 时间:
2019-06-15 15:40:33
阅读次数:
386
把写代码过程中经常用到的一些代码段珍藏起来,下面的代码段是关于python解析远程web页面的代码。importhtmllib,urllib,formatter,sysdefparse(url,formatter):f=urllib.urlopen(url)data=f.read()f.close()p=htmllib.HTMLParser(formatter)p.feed(data)p.clos
分类:
编程语言 时间:
2019-06-12 18:05:06
阅读次数:
100
urllib库 urllib库是python中的一个基本网络请求库。用于模拟浏览器的行为,向指定服务器发送请求,并接收返回的数据。 在python3中所有的网络请求相关函数都集中在urllib.request模块下面 urlopen函数 向服务器发起请求 urlopen函数的参数 1. url 目标 ...
分类:
Web程序 时间:
2019-06-10 10:37:19
阅读次数:
115
上一篇说了请求访问的流程,这一篇说一下请求对应的源码调用 as_view 定义view dispatch dispatch initialize_request get_parsers (获取解析器) parser_context (解析上下文) get_authentitors (获取认证器) g ...