11 2020 档案

摘要:SpringBoot中的异步操作与线程池 线程池类型 Java通过 java.util.concurrent.Executors 的静态方法提供五种线程池 newCachedThreadPool 创建一个可缓存线程池,如果线程池长度超过处理需要,可灵活回收空闲线程,若无可回收,则新建线程。 newF 阅读全文
posted @ 2020-11-20 15:48 小小爬虫 阅读(2543) 评论(0) 推荐(0) 编辑
摘要:SpringBoot 使用拦截器作为权限控制 为什么不用Spring Security?因为Spring Security是基于filter的,而filter是依赖于servlet容器的(如tomcat)。我想做一个解耦的权限控制器,尽量摆脱servlet容器。 什么是Spring拦截器 Sprin 阅读全文
posted @ 2020-11-16 15:09 小小爬虫 阅读(4936) 评论(0) 推荐(1) 编辑
摘要:算法来源 依据CEPF算法 算法论文中文地址:http://www.jos.org.cn/html/2016/3/4868.htm 算法论文英文地址:https://dl.acm.org/doi/10.1145/2505515.2505558 github地址1:https://github.com 阅读全文
posted @ 2020-11-03 17:01 小小爬虫 阅读(194) 评论(0) 推荐(0) 编辑
摘要:关于前后端数据交互与HTTP请求的关系 写本篇文章的目的是想让更多前后端联调的工作变得更清晰明了 HTTP请求的简单认识 资源地址 协议://域名或者ip:端口/路径(protocol://host:port/address) 如 "https://www.cnblogs.com/xiaogblog 阅读全文
posted @ 2020-11-03 14:11 小小爬虫 阅读(1107) 评论(0) 推荐(0) 编辑