知识汇总(1)
摘要:hashMap 夺命14问 : https://mp.weixin.qq.com/s/al-wCChYjyQ_BSfET_lW7g hashmap 的小结:https://baijiahao.baidu.com/s?id=1719030639741078030&wfr=spider&for=pc 0
阅读全文
posted @
2020-08-12 19:35
lshan
阅读(150)
推荐(0) 编辑
subline 正则替换
摘要:目的: 将如下改写成 "key":"value" 形式 方案:使用正则: Find What : ^(.*)=(.*)$ replace With "\1" : "\2"
阅读全文
posted @
2019-11-16 19:32
lshan
阅读(203)
推荐(0) 编辑
springboot sybase 数据库
摘要:依赖:(驱动) 配置:application.yml # Hikari will use the above plus the following to setup connection pooling#spring.datasource.type=com.zaxxer.hikari.HikariD
阅读全文
posted @
2018-11-09 17:27
lshan
阅读(1759)
推荐(0) 编辑
win10下装的ubuntu14.04双系统,ubuntu系统访问win10磁盘问题
摘要:参考:https://blog.csdn.net/u010426270/article/details/52420231 ubuntu下 解决方法: 1. 在终端输入如下命令,查看分区挂载情况 2. 修复挂载错误的相应的分区,如提示中的/dev/sda4,输入:(此处是sda4)
阅读全文
posted @
2018-11-05 11:25
lshan
阅读(127)
推荐(0) 编辑
将一个list分为每份小鱼1000的
摘要:List<LazadaTrackingDataTO> dataSourceList = new ArrayList<LazadaTrackingDataTO>(); if (packages.size() > 1000) { int i = 0, j = 1000; while (true) { i
阅读全文
posted @
2018-09-17 10:09
lshan
阅读(500)
推荐(0) 编辑