- 博客(163)
- 收藏
- 关注
转载 接口自动化测试
http://www.51testing.com/html/57/n-4459157.html转载于:https://www.cnblogs.com/lijiale/p/11572293.html
2019-09-23 14:40:00
245
转载 ognl使用总结
https://www.cnblogs.com/ITEagle/archive/2010/04/10/1709007.html转载于:https://www.cnblogs.com/lijiale/p/11459130.html
2019-09-04 14:52:00
262
转载 spring local cache
https://www.baeldung.com/spring-cache-tutorial转载于:https://www.cnblogs.com/lijiale/p/11426029.html
2019-08-28 19:33:00
427
转载 spring-boot-actuator介绍
https://www.callicoder.com/spring-boot-actuator/转载于:https://www.cnblogs.com/lijiale/p/11401748.html
2019-08-23 17:57:00
180
转载 springboot prometheus
https://www.wqp0010.top/2018/12/28/SpringBoot2-0%E6%95%B4%E5%90%88Prometheus-Grafana-%E4%BA%8C/转载于:https://www.cnblogs.com/lijiale/p/11388039.html
2019-08-21 12:26:00
178
转载 deepfake安装python常用命令
pip install -r requirements.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/python -m pip install face-recognition -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/https...
2019-08-05 14:53:00
336
转载 win10 安装face_recongnition
1、安装dlibhttps://stackoverflow.com/questions/41912372/dlib-installation-on-windows-102、安装face_recongnitionpip install face_recognitionhttps://github.com/ageitgey/face_recognition/issues/17...
2019-07-26 16:10:00
383
转载 python3安装opencv
https://medium.com/@akshaychandra21/how-to-install-opencv-and-keras-in-python-3-6-f5f721f0d0b3https://stackoverflow.com/questions/51721695/dlib-installation-error转载于:https://www.cnblogs.com/l...
2019-07-24 18:09:00
77
转载 java更换java_home不生效问题
https://blog.youkuaiyun.com/CallMeV6/article/details/80804376转载于:https://www.cnblogs.com/lijiale/p/11218799.html
2019-07-20 18:53:00
1538
转载 spring shutdown callback
https://www.baeldung.com/spring-shutdown-callbacks转载于:https://www.cnblogs.com/lijiale/p/11209520.html
2019-07-18 19:33:00
182
转载 spring profile 使用
https://www.baeldung.com/spring-profileshttps://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-profiles.html转载于:https://www.cnblogs.com/lijiale/p/11201014.html
2019-07-17 14:51:00
122
转载 What is the size of column of int(11) in mysql in bytes?
https://stackoverflow.com/questions/5634104/what-is-the-size-of-column-of-int11-in-mysql-in-bytes转载于:https://www.cnblogs.com/lijiale/p/11156027.html
2019-07-09 11:00:00
105
转载 spotbus gradle-qulity-plugiin 多项目bug检查
https://spotbugs.readthedocs.io/en/latest/bugDescriptions.htmlhttps://xvik.github.io/gradle-quality-plugin/3.0.0/guide/config/https://github.com/daggerok/spotbugs-gradle-plugin-multi-project-...
2019-07-01 14:50:00
287
转载 数据结构之hashmap
https://blog.youkuaiyun.com/vking_wang/article/details/14166593转载于:https://www.cnblogs.com/lijiale/p/11004622.html
2019-06-11 16:53:00
104
转载 daily algorithm 判断链表是否有环
public static boolean isLoopLink(ListNode head) { if (head == null) { return false; } ListNode fast = head.next; ListNode slow = head; ...
2019-06-05 16:02:00
107
转载 happy number
public static boolean happyNum(int num) { if (num < 0) { return false; } int sum = 0; while (num > 0) { sum += (num % 10) * ...
2019-06-04 12:08:00
101
转载 spring boot mock的两种方式
https://www.springboottutorial.com/spring-boot-unit-testing-and-mocking-with-mockito-and-junit转载于:https://www.cnblogs.com/lijiale/p/10905192.html
2019-05-22 12:16:00
377
转载 在线线程分析网站
https://fastthread.io/转载于:https://www.cnblogs.com/lijiale/p/10894427.html
2019-05-20 15:32:00
857
转载 判断是否今天,今年
public static boolean isToday(long ts) { LocalDateTime today = LocalDateTime.of(LocalDate.now(), LocalTime.of(0, 0, 0)); LocalDateTime tommorrow = today.plusDays(1); ...
2019-05-20 12:24:00
108
转载 获取获取docker的文件
1、docke实例内mysql 导出文件mysql -h yourhost -P yourport -u user -p dbname -e "select * from employee" > /tmp/employee.csventer your password:docker实例安装pythonapt-get install python-dev...
2019-05-14 12:30:00
850
转载 播放数格式化代码
public static String formatView(long views) { if (views < 1) { return "0"; } else if (views < TEN_THOUSAND) { return views + ""; } el...
2019-05-10 18:15:00
91
转载 springboot2 + prometheus + grafana 监控整合
https://blog.youkuaiyun.com/michaelgo/article/details/81709652转载于:https://www.cnblogs.com/lijiale/p/10746038.html
2019-04-21 17:54:00
383
转载 vs code 快捷键总结
返回上个光标:alt + ←列编辑模式:shift + alt + 鼠标左键转载于:https://www.cnblogs.com/lijiale/p/10644224.html
2019-04-02 17:56:00
104
转载 java8 concurrecy
https://winterbe.com/posts/2015/04/07/java8-concurrency-tutorial-thread-executor-examples/转载于:https://www.cnblogs.com/lijiale/p/10577125.html
2019-03-22 11:21:00
130
转载 java8 localdatetime timestamp 转换
https://blog.youkuaiyun.com/wsywb111/article/details/79815481转载于:https://www.cnblogs.com/lijiale/p/10573433.html
2019-03-21 18:06:00
767
转载 java内存分析
http://trustmeiamadeveloper.com/2016/03/18/where-is-my-memory-java/转载于:https://www.cnblogs.com/lijiale/p/10532573.html
2019-03-14 18:30:00
68
转载 git 强制回到以前版本
git reset dfd3e36a641340a0b86f811df869c4375fabeff2 --hard转载于:https://www.cnblogs.com/lijiale/p/10515646.html
2019-03-12 11:35:00
377
转载 zk再学习
https://ronghao.iteye.com/blog/1461798转载于:https://www.cnblogs.com/lijiale/p/10482505.html
2019-03-06 12:25:00
94
转载 vue后台管理系统
https://juejin.im/post/59097cd7a22b9d0065fb61d2转载于:https://www.cnblogs.com/lijiale/p/10469970.html
2019-03-04 12:25:00
111
转载 curl download zip file
https://askubuntu.com/questions/285976/download-zip-file-with-curl-command转载于:https://www.cnblogs.com/lijiale/p/10299257.html
2019-01-21 16:04:00
260
转载 vim 查找替换命令
http://vim.wikia.com/wiki/Search_and_replace转载于:https://www.cnblogs.com/lijiale/p/10276372.html
2019-01-16 12:37:00
126
转载 python2.7 中文map
http://phpquan.com/lamp/python/python-dict/转载于:https://www.cnblogs.com/lijiale/p/10276204.html
2019-01-16 11:48:00
153
转载 docker容器utf-8编码问题
locale -aexport LANG=C.UTF-8locale在docker容器中python脚本汉字的会乱码 按照上面的方法暂时的设置下容器编码可以解决脚本中文乱码问题转载于:https://www.cnblogs.com/lijiale/p/10276139.html...
2019-01-16 11:37:00
1357
转载 python27 mysqldb window install
https://www.codegood.com/archives/129下载地址 : https://i.cnblogs.com/Files.aspx转载于:https://www.cnblogs.com/lijiale/p/10254102.html
2019-01-11 11:08:00
111
转载 python ratelimit使用
1、https://pypi.org/project/ratelimit/转载于:https://www.cnblogs.com/lijiale/p/10214627.html
2019-01-03 15:50:00
1521
转载 本机机器ssh docker容器
https://blog.youkuaiyun.com/u010324465/article/details/771845061、在docker中安装openssh-server2、sudo /etc/init.d/ssh start 启动服务3、查看启动成功与否ps -e|grep ssh4、$sudo vim /etc/ssh/sshd_configPermitRootLo...
2019-01-03 12:36:00
204
转载 Arthas诊断工具使用资料
1、https://github.com/alibaba/arthas/issues/3272、https://alibaba.github.io/arthas/jad.html3、https://github.com/alibaba/arthas/issues/406转载于:https://www.cnblogs.com/lijiale/p/10210395.html...
2019-01-02 18:17:00
111
转载 spring applicationContext
获取spring appllcationContext方式link : https://stackoverflow.com/questions/21827548/spring-get-current-applicationcontext基本两种方式1、autowired ApplicationContext2、implements ApplicationContextAw...
2019-01-02 16:35:00
76
转载 cron表达式
https://www.cnblogs.com/linjiqin/p/3178452.html转载于:https://www.cnblogs.com/lijiale/p/10175759.html
2018-12-25 18:49:00
83
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人