上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 68 下一页
摘要: ThreadPoolConfig.java import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.concurrent.BasicThreadFactory; import org.springframework.cont 阅读全文
posted @ 2021-11-21 16:54 yvioo 阅读(1710) 评论(0) 推荐(0) 编辑
摘要: fatal: refusing to merge unrelated histories(拒绝合并不相关的历史) 使用 git pull origin master --allow-unrelated-histories 阅读全文
posted @ 2021-11-19 09:13 yvioo 阅读(47) 评论(0) 推荐(0) 编辑
摘要: word-break: break-all; 阅读全文
posted @ 2021-11-17 20:05 yvioo 阅读(2021) 评论(0) 推荐(0) 编辑
摘要: 执行 PASSWORD=$(base64 < /dev/urandom | head -c8); echo "123456"; echo -n "123456" | sha256sum | tr -d '-' 这里的 123456 就是密码(这个密码不能包含特殊字符 可以字母或者数字) 显示 123 阅读全文
posted @ 2021-11-17 10:04 yvioo 阅读(2088) 评论(0) 推荐(0) 编辑
摘要: BufferedImage转byte[] ByteArrayOutputStream out = new ByteArrayOutputStream(); ImageIO.write(imgBuff, "jpeg", out); byte[] bytes=out.toByteArray(); byt 阅读全文
posted @ 2021-11-11 16:41 yvioo 阅读(1957) 评论(0) 推荐(0) 编辑
摘要: 依赖 <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> <version>4.1.42.Final</version> </dependency> 还用到了 <dependency> <groupI 阅读全文
posted @ 2021-11-03 11:40 yvioo 阅读(4447) 评论(11) 推荐(1) 编辑
摘要: 去除解压目录结构使用 --strip-components N 如: 压缩文件text.tar 中文件信息为 src/src1/src2/text.txt 运行 tar -zxvf text.tar --strip-components 1 结果:src1/src2/text.txt 如果运行 ta 阅读全文
posted @ 2021-10-28 15:02 yvioo 阅读(1611) 评论(0) 推荐(0) 编辑
摘要: Dockerfile # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed wi 阅读全文
posted @ 2021-10-28 13:18 yvioo 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 另一种方式(推荐):https://www.cnblogs.com/pxblog/p/17058417.html 依赖 <dependency> <groupId>org.eclipse.paho</groupId> <artifactId>org.eclipse.paho.client.mqttv 阅读全文
posted @ 2021-10-25 14:45 yvioo 阅读(6807) 评论(2) 推荐(0) 编辑
摘要: java -Dxxx=test -jar xxx.jar (放在-jar之前) 属性名不区分大小写 取值:System.getProperty("xxx") spring的@value("${xxx}") java -jar xxx.jar value1=1 value2=2 (放在启动jar包之后 阅读全文
posted @ 2021-10-20 10:54 yvioo 阅读(4202) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 68 下一页