05 2018 档案
Java API token定时刷新
摘要:主要用到了调度线程池: ScheduleExecutorService, 一个循环方法scheduleWithFixedDelay(方法执行完之后计算下一次开始执行时间) 使用 TokenManager.setDaemon(false); TokenManager.init(apiKey, Secu 阅读全文
posted @ 2018-05-31 18:09 1161588342 阅读(5915) 评论(0) 推荐(0)
JS 浏览器扩展storage
摘要:https://github.com/WQTeam/web-storage-cache 阅读全文
posted @ 2018-05-24 13:15 1161588342 阅读(170) 评论(0) 推荐(0)
Vue 实现微信 jssdk 扫码, 上传图片
摘要:流程 1: 配置微信公众号JS域名 2:前端发送URL后台获取JSSDK配置, 后台Service代码如下, 修改2处位置: WeixinUtil.APPID => 当前公众号APPID WeixinUtil.getAccessToken() => 当前公众号access_token @Servic 阅读全文
posted @ 2018-05-22 15:41 1161588342 阅读(6045) 评论(0) 推荐(0)
Vue cli 脚手架使用
摘要:1:基本的安装 安装node 安装npm Windows 更改环境变量 重启 环境变量生效 安装vue-cli 安装webpack 2:项目构建 https://segmentfault.com/a/1190000009291545 此处Use ESLint to lint your code? 选 阅读全文
posted @ 2018-05-21 14:33 1161588342 阅读(122) 评论(0) 推荐(0)
Linux 安装vsftpd
摘要:# useradd ftpuser # passwd ftpuser Changing password for user ftpuser. New password: Retype new password: passwd: all authentication tokens updated su 阅读全文
posted @ 2018-05-18 18:13 1161588342 阅读(97) 评论(0) 推荐(0)
Nginx 图片服务器搭建
摘要:安装Nginx >yum install -y nginx 安装vsftpd http://www.cnblogs.com/eason-d/p/9057389.html 2: 创建目录 /usr/local/upload/images/ 用来存放图片 # mkdir /usr/local/uploa 阅读全文
posted @ 2018-05-18 17:11 1161588342 阅读(145) 评论(0) 推荐(0)
java 锁
摘要:https://blog.csdn.net/zqz_zqz/article/details/70233767 阅读全文
posted @ 2018-05-15 11:57 1161588342 阅读(88) 评论(0) 推荐(0)
Linux 用户态 和 内核态
摘要:https://www.cnblogs.com/bakari/p/5520860.html 阅读全文
posted @ 2018-05-15 11:16 1161588342 阅读(130) 评论(0) 推荐(0)
1
摘要:https://jingyan.baidu.com/article/a501d80c16d2a0ec620f5e43.html 阅读全文
posted @ 2018-05-14 13:50 1161588342 阅读(62) 评论(0) 推荐(0)
JDK 1.8 HashMap
摘要:https://blog.csdn.net/zhanglh046/article/details/52882994 阅读全文
posted @ 2018-05-11 18:43 1161588342 阅读(162) 评论(0) 推荐(0)
Java 二维码生成
摘要:https://github.com/easonstudy/qrcode_demo 阅读全文
posted @ 2018-05-10 15:07 1161588342 阅读(153) 评论(0) 推荐(0)
正则表达式 字符串中必须包含某个字符
摘要:^(?=.*[A-Z])(?=.*_)(?=.*\d)^(?=.*[a-z]).{7,20}$ (?=.*[A-Z]) :必须包含大写字母一个 阅读全文
posted @ 2018-05-10 15:05 1161588342 阅读(37756) 评论(1) 推荐(0)