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