上一页 1 2 3 4 5 6 7 ··· 9 下一页

2019年4月23日

跨域学习笔记

摘要: 跨域问题 同源策略 同源策略限制了从同一个源加载的文档或脚本如何与来自另一个源的资源进行交互。这是一个用于隔离潜在恶意文件的重要安全机制。 协议不同,端口不同,域名不同 地址1:http://store.company.com/dir2/other.html 地址2: http://news.com 阅读全文

posted @ 2019-04-23 09:52 lukelin1989 阅读(94) 评论(0) 推荐(0) 编辑

2019年3月24日

自学springboot

摘要: 参考资料 https://www.renren.io/guide/ 阅读全文

posted @ 2019-03-24 23:59 lukelin1989 阅读(86) 评论(0) 推荐(0) 编辑

2019年3月5日

常用命令

摘要: db.getCollection('useful_proxy').find({}) db.getCollection('raw_proxy').find({}) db.getCollection('useful_proxy').remove({}) db.getCollection('raw_pro 阅读全文

posted @ 2019-03-05 01:45 lukelin1989 阅读(78) 评论(0) 推荐(0) 编辑

2019年2月20日

python入门练习之如何连接数据库

摘要: !/usr/bin/python coding: UTF 8 __author__ = 'luke' from sqlalchemy import create_engine from sqlalchemy.ext.declarative import declarative_base from s 阅读全文

posted @ 2019-02-20 21:13 lukelin1989 阅读(225) 评论(0) 推荐(0) 编辑

2019年2月11日

cucumber & selenium & bddtest

摘要: [TOC] 1.Cucumber介绍 + feature : read requirement +scenario : testing situation,including + Given/ + when/ + then Feature:用来描述我们需要测试的功能 Scenario: 用来描述测试 阅读全文

posted @ 2019-02-11 17:44 lukelin1989 阅读(447) 评论(0) 推荐(0) 编辑

idea常用快捷汇总

摘要: [TOC] 1.查询 2. 自动提示 3. 代码生成 4. 摆脱鼠标 5.源码阅读 阅读全文

posted @ 2019-02-11 11:43 lukelin1989 阅读(107) 评论(0) 推荐(0) 编辑

2019年1月30日

idea validation code

摘要: K71U8DBPNE eyJsaWNlbnNlSWQiOiJLNzFVOERCUE5FIiwibGljZW5zZWVOYW1lIjoibGFuIHl1IiwiYXNzaWduZWVOYW1lIjoiIiwiYXNzaWduZWVFbWFpbCI6IiIsImxpY2Vuc2VSZXN0cmljdGl 阅读全文

posted @ 2019-01-30 16:50 lukelin1989 阅读(201) 评论(0) 推荐(0) 编辑

2019年1月17日

笔记

摘要: 目录 并发容器 ConcurrentHashMap Hashmap多线程会导致HashMap的Entry链表形成环形数据结构,一旦形成环形数据结构,Entry的next节点永远不为空,就会产生死循环获取Entry。 HashTable使用synchronized来保证线程安全,但在线程竞争激烈的情况 阅读全文

posted @ 2019-01-17 10:30 lukelin1989 阅读(102) 评论(0) 推荐(0) 编辑

2019年1月16日

并发容器

摘要: 6.1 skiplist 跳表 跳表是一个可以替换平衡树相对简单的结构.有序的元素分布在多层次的链表上面.每个节点有指向上一个节点和下一节点的引用.通过随机的方式决定元素是否跃升为上升节点.采取的是一种空间换取时间的策略.类似于数据库里面的索引. 6.2 ConcurrentSkipListMap& 阅读全文

posted @ 2019-01-16 18:39 lukelin1989 阅读(138) 评论(0) 推荐(0) 编辑

2019年1月15日

爬虫参考资料

摘要: https://www.cnblogs.com/dayouzi/archive/2018/12/02/10054913.html https://www.yuque.com/kouss/taoke/wwkwwr https://my.oschina.net/codingDog/blog/983302 阅读全文

posted @ 2019-01-15 08:00 lukelin1989 阅读(227) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 9 下一页

导航