摘要: rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022 阅读全文
posted @ 2022-04-03 14:30 JaminYe 阅读(28) 评论(0) 推荐(0) 编辑
摘要: CountDownLatch countDownLatch = new CountDownLatch(2); StringBuffer stringBuffer = new StringBuffer(); ExecutorService executorService = Executors.new 阅读全文
posted @ 2022-04-03 14:28 JaminYe 阅读(97) 评论(0) 推荐(0) 编辑
摘要: cat /proc/sys/net/ipv4/ip_local_port_range echo "10000 65535" > /proc/sys/net/ipv4/ip_local_port_range 阅读全文
posted @ 2022-04-03 14:28 JaminYe 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 类内部 本包 子类 外部 public √ √ √ √ protected √ √ √ default √ √ private √ 阅读全文
posted @ 2022-04-03 14:27 JaminYe 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 单个包含可以使用 LOCATE(要查找的字符串,字段) 多个可以使用 字段 REGEXP '字符串1|字符串2|....' 替换函数 REPLACE(字段,原字符串,新字符串) group_concat会被截取 SET SESSION group_concat_max_len=5120; SET G 阅读全文
posted @ 2022-04-03 14:25 JaminYe 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 下载地址 - [百度网盘](https://pan.baidu.com/s/1b3MlVP2uF5OqPRMLbJf2Lg) - [sourceforge](https://sourceforge.net/projects/pentaho/files/) 配置: 1. java_home的配置 2. 阅读全文
posted @ 2022-04-03 14:22 JaminYe 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 判断是否为json字符串 `JSONValidator.from(s1).getType() 首先不为null,另像数字这种判断为value类型,我们也不需要排除 json字符串美化 JSONObject.toJSONString(JSON.parseObject(result, Feature.O 阅读全文
posted @ 2022-04-03 14:17 JaminYe 阅读(192) 评论(0) 推荐(0) 编辑
摘要: git回滚 单分支 git reset hard 旧的地方 git reset mixed 新的地方 git 回滚错误合并 git reset hard 旧的地方 git push -f origin myBranch 阅读全文
posted @ 2022-04-03 14:16 JaminYe 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Docker容器启动报WARNING: IPv4 forwarding is disabled. Networking will not work vim /etc/sysctl.conf net.ipv4.ip_forward=1 systemctl restart network 阅读全文
posted @ 2022-04-03 14:15 JaminYe 阅读(30) 评论(0) 推荐(0) 编辑
摘要: At least 15MB more space needed on the /boot filesystem. df -h | grep boot uname -r rpm -qa | grep kernel 阅读全文
posted @ 2022-04-03 14:07 JaminYe 阅读(19) 评论(0) 推荐(0) 编辑