摘要:
在 JDK 高版本中,Java 语言规范已经更新,因可能会破坏 Java 语言的安全性和稳定性,不再允许通过反射改变 final 字段的值,需要自己做一下处理。 创建工具类 import java.lang.reflect.Field; import sun.misc.Unsafe; public 阅读全文
摘要:
查询 # 查询当前服务器时区timedatectl# 查询支持时区列表timedatectl list-timezones# 修改时区为上海sudo timedatectl set-timezone Asia/Shanghai# 验证是否修改成功timedatectl 阅读全文
摘要:
nginx反向代理websocket # webSocket wss 加密链接 location /ws { proxy_pass http://127.0.0.1:2222/ws; proxy_set_header Host $host; proxy_set_header X-Real-IP $r 阅读全文
摘要:
## 统计文件里关键字的出现次数 grep -o '抢单成功' ms-manager-20230209.0.log | wc -l 阅读全文
摘要:
查询端口 netstat -ano | findstr 666 查询进程pid占用程序 tasklist |findstr 11568 关闭进程: taskkill /f /pid 11568 如杀不了,cmd命令请使用管理员执行 阅读全文
摘要:
示例: System.out.printf("时间: %1$ta, %1$td %1$tb %1$tY, %1$tI:%1$tm:%1$tS.%1$tL %1$tp %1$tZ%n", 1662712111801); 结果:时间: 星期五, 09 九月 2022, 04:09:31.801 下午 C 阅读全文
摘要:
springboot启动成功后打印所有配置 import org.springframework.boot.CommandLineRunner; import org.springframework.core.env.ConfigurableEnvironment; import org.sprin 阅读全文
摘要:
给定一个数组 nums,编写一个函数将所有 0 移动到数组的开头,同时保持非零元素的相对顺序,并且不能有额外的内存开销(不能创建数组)只能在原数组上操作 例: [0, 8, 5, 0, 134, 0, 3, 6, 5, 0, 7, 0] 结果要输出: [0, 0, 0, 0, 0, 8, 5, 13 阅读全文
摘要:
通过dio.post时遇到了400错误,直接到异常处理区域了,可以通过catch进行拦截 try { // 发送请求 Response response = await dio.post(ossUrl, data: data); print(response.statusCode); print(r 阅读全文